Join

From MiniScript Wiki
Jump to navigation Jump to search

self.join joins the elements of a list together to form a string.

See also: split

Arguments

Parameter Name Default Value Meaning
self list list to join
delimiter string, default " " string to insert between each pair of elements.

Example

[2,4,8].join("-")		// returns "2-4-8"