创建数组的副本

1、使用rest

let newarr = [...oldarr]

2、json.stringify + json.parse

3、其他深拷贝的方法

你可能感兴趣的:(javascript)