DevilRoshan / Question

前端问题解决
0 stars 0 forks source link

[Daily]以下代码输出 #115

Closed DevilRoshan closed 4 years ago

DevilRoshan commented 4 years ago

出自小程序前端面试星球

// 以下代码输出
let a = {n:1};
let b = a;
a.x = a = {n:2};
console.log(a.x);
console.log(b.x);
DevilRoshan commented 4 years ago

https://github.com/DevilRoshan/Question/blob/master/20200818-js-code-point.md