正如here所述,在javascript中将数组b附加到数组a的快速方法是a.push.apply(a, b)
。
您会注意到对象a被使用了两次。我们真的只想要push
函数,b.push.apply(a, b)
完成同样的事情 - apply的第一个参数为应用函数提供this
。
我认为直接使用Array对象的方法更有意义:Array.push.apply(a, b)
。但这不起作用!
我很好奇为什么不,如果有更好的方法来实现我的目标。 (应用push
函数而无需两次调用特定数组。)
答案 0 :(得分:61)
这是Array.prototype.push
,而不是Array.push
答案 1 :(得分:7)
您还可以使用[].push.apply(a, b)
缩短记谱法。
答案 2 :(得分:2)
Array.prototype.concat
有什么问题?
var a = [1, 2, 3, 4, 5];
var b = [6, 7, 8, 9];
a = a.concat(b); // [1, 2, 3, 4, 5, 6, 7, 8, 9];
答案 3 :(得分:1)
当前版本的JS允许您将数组解压缩为参数。
var a = [1, 2, 3, 4, 5,];
var b = [6, 7, 8, 9];
a.push(...b); //[1, 2, 3, 4, 5, 6, 7, 8, 9];