Join

From MiniScript Wiki
Revision as of 15:21, 17 March 2020 by JoeStrout (talk | contribs) (JoeStrout moved page Self.join to Join without leaving a redirect)
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"