Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 805 Bytes

enumerationProperty.md

File metadata and controls

22 lines (13 loc) · 805 Bytes

get poprty from object 獲得物件屬性的方法

Proprty 屬性

  1. self property 自有屬性
  • IsEnumerable(可枚舉): 可使用 Object.keys(obj), for ... in 獲取
  • not Nnumerable(不可枚舉)
  1. prototype from prototype has 繼承屬性
  • IsEnumerable(可枚舉): 可使用 for ... in 獲取
  • not Nnumerable(不可枚舉)

getOwnPropertyNames: get all property from object

The way to get poprty from object 獲得屬性的方法

  • Object.keys(obj):get all self'isenumerable property(可以把自有且可枚舉的屬性組成陣列)
  • for .. in :get all isenumerable property (可以把自有繼承且可枚舉的屬性組成陣列)
  • getOwnPropertyNames:get all property (可以把自有繼承所有屬性組成陣列)