gpt4 book ai didi

javascript - 如何将一个数组的所有元素添加到另一个数组中?

转载 作者:行者123 更新时间:2023-11-28 15:49:00 27 4
gpt4 key购买 nike

我想将一个数组的所有元素添加到另一个数组中。 Array.prototype.concat 做了类似的事情,但它返回一个新数组;我想保留对同一数组的引用。最有效(即高性能)的方法是什么?

最佳答案

使用Array.prototype.push .

Array.prototype.push.apply(dest, source);

http://jsperf.com/splice-vs-push/2让我相信这比使用 Array.prototype.splice 更快。

关于javascript - 如何将一个数组的所有元素添加到另一个数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21249063/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com