作者
发布于 2022-08-15 / 20 阅读
0
0

coyp 函数 深度复制数组里有对象的数组(解决数组堆栈问题)

function copySelf(obj) {

var newobj = obj.constructor === Array ? [] : {};

        if (typeof obj !== "object") {

return;

}

        for (var i in obj) {

newobj[i] = typeof obj[i] === "object" ? copySelf(obj[i]) : obj[i];

        }

   return newobj;

}


评论