Difference between revisions of "Join"
Jump to navigation
Jump to search
(Created page with "<c>self.join</c> joins the elements of a list together to form a string. See also: split === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !!...") |
|
(No difference)
|
Revision as of 15:21, 17 March 2020
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"