数组的合并
Posted 最爱小虾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组的合并相关的知识,希望对你有一定的参考价值。
两个数组种的号码合并:
//第一种.concat var a1 = [4,5,6], a2=[7,8,9]; a1 = a1.concat(a2); console.log(a1);//4,5,6,7,8,9 //第二种 var b1 = [1,2]; var b2 = [3,4]; Array.prototype.push.apply(b1, b2); console.log(b1);//1,2,3,4
以上是关于数组的合并的主要内容,如果未能解决你的问题,请参考以下文章