Converts all elements in array into a string separated by separator.
array
separator
5.0.0
join(['a', 'b', 'c'], '~');// => 'a~b~c'
The array to convert.
The element separator.
Returns the joined string.
Converts all elements in
array
into a string separated byseparator
.5.0.0