为什么不Array.push.apply工作?
如此处所述,在javascript a.push.apply(a, b)
数组b附加到数组a的快速方法是a.push.apply(a, b)
。
你会注意到对象a被使用了两次。 真的,我们只是想要push
函数,而b.push.apply(a, b)
完成了完全相同的事情 – apply的第一个参数为应用函数提供了this
参数。
我认为直接使用Array对象的方法可能更有意义: Array.push.apply(a, b)
。 但是这不行!
我很好奇,为什么不,以及是否有更好的方法来实现我的目标。 (应用push
function,而不需要两次调用特定的数组。
它是Array.prototype.push
,而不是Array.push
您也可以使用[].push.apply(a, b)
作为较短的符号。
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];