复制数组 我们都知道数组是引用类型数据.这里使用slice复制一个数组,原数组不受影响. let list1 = [1, 2, 3, 4]; let newList = list1.slice(); list1.push(5); // [1,2,3,4,5] //newList [1,2,3,4] 不受影响 console.log(newList); //[1,2,3,4] console.log(list1); //[1, 2, 3, 4, 5] let list2 = [5,6,7,8];…