首页 新闻 会员 周边
1
回答数

已解决问题 5 数据类型里的小问题

var a={n:123}; var b=a; a.x=a={n:456}; console.log(a.x);//undefined console.log(b);//123 为什么输出的是unde