首页 > 其他 > 详细

deepClone

时间:2020-08-24 15:25:50      阅读:62      评论:0      收藏:0      [点我收藏+]

Object.prototype.clone = function(){
var res = Object.create(Object.getPrototypeOf(this))
var props = Object.getOwnPropertyNames(this)
props.forEach(function(item){
if(Object.prototype.toString.call(this[item]) ==="[object Object]" || Object.prototype.toString.call(this[item]) ==="[object Array]") return res[item] = this[item].clone()
des = Object.getOwnPropertyDescriptor(this, item)
Object.defineProperty(res, item, des)
}, this)
return res
}

deepClone

原文:https://www.cnblogs.com/usebylgb/p/13553629.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!