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

深拷贝方法

时间:2018-12-11 17:28:10      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:let   string   typeof   14.   ons   eof   new   pcl   href   

深拷贝

function deepClone(obj) {
    if(obj == null) return obj; // null == undefined
    if(obj instanceof Date) return new Date(obj);
    if(obj instanceof RegExp) return new RegExp(obj);
    if(typeof obj != ‘object‘) return obj;
    let newObj = new obj.constructor;
    for(let key in obj) {
        newObj[key] = deepClone(obj[key]);
    }
    return newObj;
}
参考地址

JSON.stringify复制对象特点
一步步推导出的深拷贝
jquery中extend拷贝方法
Object.create拷贝方法

深拷贝方法

标签:let   string   typeof   14.   ons   eof   new   pcl   href   

原文地址:https://www.cnblogs.com/bonly-ge/p/10102962.html

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