Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript extend array

The .push method can take multiple arguments. You can use the spread operator to pass all the elements of the second array as arguments to .push:

>>> a.push(...b)
If your browser does not support ECMAScript 6, you can use .apply instead:

>>> a.push.apply(a, b)
Or perhaps, if you think it's clearer:

>>> Array.prototype.push.apply(a,b)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #extend #array
ADD COMMENT
Topic
Name
9+1 =