let a = {n: 1} let b = a; a.x = a = {n: 2} console.log(a.x); console.log(b.x);
第二个输出结果b.x我能理解,因为a和b是同一个引用,
但是一个的输出结果实在想不明白,求大神帮忙分析下
相关分类