Merges array with the given array
let myArray = [1, 2, 3]merge(myArray, [0, 6 , 2]); // myArray => [1, 2, 3, 0, 6, 2]
Generated using TypeDoc
Merges array with the given array
Example