深拷贝

function deepClone(obj = {}) {
    if (typeof obj !== 'object' || obj == null) {
        //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
    }

你可能感兴趣的:(深拷贝)