var arr2=new Array("4","5","6");
Array.prototype.push.apply(arr1,arr2);
console.log(arr1)
JS合并数组
原文:https://blog.51cto.com/13550695/2457592