let a = {n: 1}
let b = a;
a.x = a = {n: 2}
console.log(a.x);
console.log(b.x);
the second output b.x I can understand, because an and b are the same reference,
but I really don"t understand the output of one. Ask God to help me analyze
.