let a = {b:{c:55}}; let g = Object.assign({},a); g.b.c=5; //如何实现 console.log(g,a);// {b:{c:5}} {b:{c:55}} 查看完整描述