let a = {b:{c:55}};
let g = Object.assign({},a);
g.b.c=5;
//如何实现
console.log(g,a);// {b:{c:5}} {b:{c:55}}
相关分类