var a = [1, 2, 3];
var b = [4, 5];

a.push.apply(a, b);

console.log(a); // [1, 2, 3, 4, 5]

 

반응형
Posted by 힘없는염소