Creates a new array concatenating array with any additional arrays and/or values.
array
Returns the new concatenated array.
5.0.0
var array = [1];var other = concat(array, 2, [3], [[4]]);console.log(other);// => [1, 2, 3, [4]]console.log(array);// => [1] Copy
var array = [1];var other = concat(array, 2, [3], [[4]]);console.log(other);// => [1, 2, 3, [4]]console.log(array);// => [1]
Creates a new array concatenating
array
with any additional arrays and/or values.