JS中堆疊記憶體的練習

不要情緒發表於2020-01-08

題目:

let a = {n : 1};
let b = a;
a.x = a = {n : 2};
console.log(a.x);
console.log(b)
複製程式碼

解析

JS中堆疊記憶體的練習

相關文章