```
var a={n:1};
var b=a;
a.x=a={n:2};
console.log(a.x);
console.log(b.x);
```
详细解答:jsonz1993.github.io
展开
1