首页 热点资讯 义务教育 高等教育 出国留学 考研考公

js数组追加数组

发布网友 发布时间:2022-04-26 16:00

我来回答

1个回答

热心网友 时间:2022-04-24 01:53

给出的建议是老老实实用forEach,不仅可以避免大数组的异常问题,并且从性能角度考虑forEach也是最快的。

Array.prototype.extend = function (other_array) {
    /* you should include a test to check whether other_array really is an array */
    other_array.forEach(function(v) {this.push(v)}, this);   
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com