var arr1 = ["one","two","three"];
var arr2 = ["1","2",3];
Array.prototype.push.apply(arr1,arr2);
===>arr1 = ["one","two","three","1","2",3]