0
一些我不下面的代碼片段獲取: a和b是現在會指向同一個對象。分配順序
var foo = {n:1}; /// foo points to an object
var bar = foo; /// bar point to the same object as foo
foo.x = foo = {n:2}; /// foo is now pointing to a new object
在上次賦值中,屬性x被添加到條上。 爲什麼?不應該指向n:2?
如果我跑這是在Chrome腳本,看來酒吧擁有新的屬性。 FOO:對象 N:2 欄:對象 N:1 X:對象 foo.x:未定義 – badigard