数组和对象的深拷贝
数组:1.res=queue.concat()
2.res=queue.slice(0)
3.遍历
对象:1.JSON.parse(JSON.stringify(obj))
2.{...obj}
3.Object.assign({}, obj)
4.遍历
考虑:多层级深拷贝(TODO)
标签:obj,res,js,queue,数组,拷贝 From: https://www.cnblogs.com/sunjunfan-top/p/16589081.html
数组和对象的深拷贝
数组:1.res=queue.concat()
2.res=queue.slice(0)
3.遍历
对象:1.JSON.parse(JSON.stringify(obj))
2.{...obj}
3.Object.assign({}, obj)
4.遍历
考虑:多层级深拷贝(TODO)
标签:obj,res,js,queue,数组,拷贝 From: https://www.cnblogs.com/sunjunfan-top/p/16589081.html