export function deepClone(obj = {}){
// obj是null,或者不是对象数组,就直接返回
if (typeof obj !== 'object' || obj == null) {
return obj
}
// 初始化返回结果
let result
if (obj instanceof Array) {
result = []
} else {
result = {}
}
for (let key in obj) {
//保证key是自己的不是原型的
if (obj.hasOwnProperty(key)) {
//递归
result[key] = deepClone(obj[key])
}
}
// 返回结果
return result
}
网友评论