可以使用JSON.parse(JSON.stringify(arr1)) 实现数组和对象的深拷贝 ``` const arr1 = { a:1, b:[{name:1}], c:{age:1} } ```