= [1, 2, 3, 4, 5]
const b = ['lucy', 'andy', 'bob']
const c = a.concat(b)
console.log(c)
// 输出结果,c是新数组...,此时内存使用有c,a,b三个数组
// [1, 2, 3, 4, 5, 'lucy', 'andy', 'bob']
复制
2、for循环逐个添加
const a = [1, 2, 3, 4, 5]...const b = ['lucy', 'andy', 'bob']
b.forEach(item => {
a.push(item)
})
console.log(a)
// 输出结果,使用for循环往数组...a中添加数据,没有新的数组创建,对于内存来说更优。