.concat(val)
Description
Parameters
Usage On Arrays
arr = ["wow"]
// setup the array
log arr.concat(["hello","world"])
// returns ["wow","hello","world"]
// "hello" and "world" were concatenatedLast updated
arr = ["wow"]
// setup the array
log arr.concat(["hello","world"])
// returns ["wow","hello","world"]
// "hello" and "world" were concatenatedLast updated