let a={n:1}; let b=a; a.x=a={n:2} console.log(a) //{n:2} console.log(a.x) //undefined
x 未定义
a.prototype.x
你始终没有定义X属性啊