.join(characters)
Description
Parameters
Usage On Arrays
arr = ["wow","hello","world"]
// setup the array
log arr.join("!")
// returns "wow!hello!world"
// the array was joined with "!"Last updated
arr = ["wow","hello","world"]
// setup the array
log arr.join("!")
// returns "wow!hello!world"
// the array was joined with "!"Last updated