[ js ] Object.create
想請教關於 Object.create 所 return 的物件屬性
我目前寫了一段code,如下:
-------------------------------------------
let a = Object.create({}, {
foo: {
value: 1,
enumerable: true,
writable: true,
configurable: true
},
bar: {
value: 2,
enumerable: false,
writable: false,
configurable: false
}
})
let b = Object.create(a)
console.log(Object.getPrototypeOf(b))
-------------------------------------------
我把這段code跑在四個不同的地方,分別是:
1. Firefox 51.0.1 的 debug console
2. Chrome 56.0.2924.87 debug console
3. NodeJS 7.5.0 和從github上checkout最新版
4. v8 checkout from github
在1, 2中,最後的console.log會顯示 ['foo', 'bar']
在3, 4中,則會顯示['foo']
想請教是我哪邊有理解錯誤,導致結果不如我預期?
另外想再請教,Chrome內部應該也是用v8做js的engine
為什麼結果和單純使用v8結果不同?
還請先進賜教,感謝
--
ˍˍ
很多人在即將失去的時候,不知他即將失去,最後他就真正失去 ▕天險▏
其實,一個不曾失去的人最可憐。因為,他永遠學不會什麼叫珍惜。▕刀藏▏
 ̄ ̄
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 220.134.71.154
※ 文章網址: https://www.ptt.cc/bbs/Ajax/M.1487899993.A.4BF.html
推
02/24 10:09, , 1F
02/24 10:09, 1F
→
02/24 10:10, , 2F
02/24 10:10, 2F
→
02/24 10:10, , 3F
02/24 10:10, 3F
→
02/24 10:26, , 4F
02/24 10:26, 4F
→
02/24 10:26, , 5F
02/24 10:26, 5F
→
02/24 10:26, , 6F
02/24 10:26, 6F
→
02/24 10:27, , 7F
02/24 10:27, 7F
→
02/24 10:27, , 8F
02/24 10:27, 8F
→
02/24 10:28, , 9F
02/24 10:28, 9F
→
02/24 10:28, , 10F
02/24 10:28, 10F
推
02/24 10:39, , 11F
02/24 10:39, 11F
→
02/24 10:39, , 12F
02/24 10:39, 12F
→
02/24 10:40, , 13F
02/24 10:40, 13F
→
02/24 10:40, , 14F
02/24 10:40, 14F
Ajax 近期熱門文章
PTT數位生活區 即時熱門文章