iT邦幫忙

2021 iThome 鐵人賽

DAY 4
0
Modern Web

YDKJS 一邊讀 You Don't Know JS Yet 一邊卡關一邊弄懂的日子 ԅ(≖‿≖ԅ)系列 第 4

Day04 - this&Object Prototypes Ch3 Objects - Contents - Property Descriptors 開頭

  • 分享至 

  • xImage
  •  

今天讀這小節的開頭

原來 Object 裡的 property 還默默記錄了除了 value 以外的東西,我們可以透過 Object.getOwnPropertyDescriptor() 取得

Object.getOwnPropertyDescriptor( myObj , "propertyName" )

像是

var myObj = { a: 'Pen' };

Object.getOwnPropertyDescriptor( myObj, "a" );
// 可以取得 
// configurable: true
// enumerable: true
// value: "Pen"
// writable: true

明天往後看再了解 configurable、enumerable、writable 能讓我們如何操作


若上述理解有誤都在麻煩提點提點了 ԅ(≖‿≖ԅ)


上一篇
Day03 - this&Object Prototypes Ch3 Objects - Contents - Duplicating Objects
下一篇
Day05 - this&Object Prototypes Ch3 Objects - Contents - Property Descriptors 開頭
系列文
YDKJS 一邊讀 You Don't Know JS Yet 一邊卡關一邊弄懂的日子 ԅ(≖‿≖ԅ)30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言