码迷,mamicode.com
首页 > 其他好文 > 详细

深浅拷贝

时间:2020-06-20 19:11:49      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:png   class   date   name   parse   info   height   nbsp   style   

1、ES6的扩展运算符:实现深拷贝

2、JSON.parse(JSON.stringify(js对象)):实现深拷贝

  该方法存在弊端,如果JS对象中存在有时间对象,则JSON.stringify后再JSON.parse的结果,时间将只是字符串的形式。而不是时间对象;

var test = {
   name: a,
   date: [new Date(1536627600000), new Date(1540047600000)],
};
console.log(test)
console.log("==================")

const b = JSON.parse(JSON.stringify(test))
console.log(b)

技术图片

 

深浅拷贝

标签:png   class   date   name   parse   info   height   nbsp   style   

原文地址:https://www.cnblogs.com/minyDong/p/13169741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!