var a={n:123};
var b=a;
a.x=a={n:456};
console.log(a.x);//undefined
console.log(b);//123
为什么输出的是undefined和123;
呼如林
相关分类