3 種取得 Property Key 的方法

ECMAScript Object 的 Property 基本上是由 Key / Value 構成,連 Method 也是指向 Function 的 Property,我們該如何取得 Object 的 Property Key 做進一步的運用呢 ?

Version


ECMAScript 3
ECMAScript 5.1
ECMAScript 2015

Object.keys()


將 Object 所有 Enumerable Property 的 Key 以 array 傳回,但不包含 Prototype 的 Property

ECMAScript 5.1

至於什麼是 Enumerable Property 呢 ? 稍後會介紹。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
var person = {
firstName: 'Sam',
lastName: 'Xiao',
fullName: function() {
return this.firstName + ' ' + this.lastName;
}
};

Object.keys(person)
.forEach(key => console.log(key));

// firstName
// lastName
// fullName

以 Object Literal 定義 person,在 Object Literal 的 property 都是 enumerable,所以 Object.keys() 都能顯示。

key000

  1. 因為 Object.keys() 回傳為 array,因此能直接使用 forEach()
  2. Object Literal 皆為 Enumerable Property,因此所有 key 都能顯示
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}

Person.prototype.fullName = function() {
return this.firstName + ' ' + this.lastName;
};

var person = new Person('Sam', 'Xiao');

Object.keys(person)
.forEach(key => console.log(key));

// firstName
// lastName

ECMAScript 的 OOP 正統寫法,是將 method 定義在 Prototype,但 Object.keys() 無法抓到 Prototype 的 property。

key001

  1. 將 method 定義在 Prototype
  2. ㄧ樣使用 Object.keys()
  3. 但只能顯示 Object 本身的 Enumerable Property,不包含 Prototype 的 Enumerable Property
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}

fullName() {
return this.firstName + ' ' + this.lastName;
}
}

var person = new Person('Sam', 'Xiao');

Object.keys(person)
.forEach(key => console.log(key));

// firstName
// lastName

若使用 ECMAScript 2015 的 class 寫法,Object.keys() 也只能抓到 firstNamelastName,別忘了 class 本質仍是 Constructor Function,其 method 也是定義在 Prototype,因此 Object.keys() 抓不到很合理。

Q : 若要也顯示 Prototype 的 Enumerable Property 呢 ?

要使用 for...in ,稍後會介紹。

Object.getOwnPropertyNames()


將 Object 所有 Property 的 Key 以 array 傳回,包含 Enumerable 與 Non Enumerable Property,但不包含 Prototype 的 Property

ECMAScript 5.1

Object Literal 的 property 都是 Enumerable,所以 Object.keys() 都能使用,但要如何產生 Non Enumerable 的 property 呢 ?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
var property = {
firstName: {
value: 'Sam',
writable: true,
configurable: true,
enumerable: true,
},
lastName: {
value: 'Xiao',
writable: true,
configurable: true,
enumerable: false,
},
fullName: {
value: function() {
return this.firstName + ' ' + this.lastName;
},
writable: true,
configurable: true,
enumerable: true,
},
};

var person = Object.create({}, property);

Object.keys(person)
.forEach(key => console.log(key));

// firstName
// fullName

若要特別建立 Non Enumerable Property,就必須使用 Object.create(),並特別在 Property Object 設定是否為 Enumerable。

第 8 行

1
2
3
4
5
6
lastName: {
value: 'Xiao',
writable: true,
configurable: true,
enumerable: false,
},

特別設定 lastName property 的 enumerablefalse,則 Object.keys() 將無法顯示 lastName

key002

  1. lastNameEnumerable 設定為 false
  2. 使用 Object.keys()
  3. 只顯示 EnumerabletruefirstNamefullName
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
var property = {
firstName: {
value: 'Sam',
writable: true,
configurable: true,
enumerable: true,
},
lastName: {
value: 'Xiao',
writable: true,
configurable: true,
enumerable: false,
},
fullName: {
value: function() {
return this.firstName + ' ' + this.lastName;
},
writable: true,
configurable: true,
enumerable: true,
},
};

var person = Object.create({}, property);

Object.getOwnPropertyNames(person)
.forEach(key => console.log(key));

// firstName
// lastName
// fullName

若改用 Object.getOwnPropertyNames(),則僅管 lastNameEnumerablefalse,但 Object.getOwnPropertyNames() 仍然會顯示。

key003

  1. lastNameEnumerable 設定為 false
  2. 使用 Object.getOwnPropertyNames()
  3. 無論 Enumerabletruefalse 都會顯示
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
var prototype = {
fullName: function() {
return this.firstName + ' ' + this.lastName;
},
};

var property = {
firstName: {
value: 'Sam',
writable: true,
configurable: true,
enumerable: true,
},
lastName: {
value: 'Xiao',
writable: true,
configurable: true,
enumerable: false,
},
};

var person = Object.create(prototype, property);

Object.getOwnPropertyNames(person)
.forEach(key => console.log(key));

// firstName
// lastName

fullName() 移到 Prototype,而 Object Literal 都是 Enumerable Property。

但因為 Object.getOwnPropertyNames() 不會顯示 Prototype 的 property,因此只能顯示 firstNamelastName

key004

  1. fullName() 定義在 Prototype
  2. Object.getOwnPropertyNames() 無法顯示 Prototype 的 property
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}

fullName() {
return this.firstName + ' ' + this.lastName;
}
}

var person = new Person();

Object.getOwnPropertyNames(person)
.forEach(key => console.log(key));

// firstName
// lastName

若使用 ECMAScript 2015 的 class 寫法,Object.getOwnPropertyNames() 也只能抓到 firstNamelastName,別忘了 class 本質仍是 Constructor Function,其 method 也是定義在 Prototype,因此 Object.getOwnPropertyNames() 抓不到很合理。

for…in


如同 Object.keys() 將 Object 所有 Enumerable Property 的 Key 以 array 傳回,但包含 Prototype 的 Property

ECMAScript 3

我們發現無論 Object.keys()Object.getOwnPropertyNames(),都無法顯示 Prototype 的 property,若要連 Prototype 的 property 也一起顯示,則要使用 for...in

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}

Person.prototype.fullName = function() {
return this.firstName + ' ' + this.lastName;
};

var person = new Person('Sam', 'Xiao');

for(let key in person)
console.log(key);

// firstName
// lastName
// fullName

fullName() 定義在 Prototype,之前使用 Object.keys()Object.getOwnPropertyNames() 都無法顯示,但使用 for...in 就可完全顯示了。

key005

  1. fullName() 定義在 Prototype
  2. 使用 for...in 顯示所有 property 的 key
  3. 連 Prototype 的 property 的 key 也一併顯示
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}

fullName() {
return this.firstName + ' ' + this.lastName;
}
}

var person = new Person('Sam', 'Xiao');

for(let key in person)
console.log(key);

// firstName
// lastName

for...in 搭配 ECMAScript 2015 的 class 時,卻不會顯示 fullName

理論上 classfullName() 是在 Prototype 上,for...in 應該會顯示卻沒顯示,也就是若搭配 classfor...in 相當於 Object.keys(),結果比較令人訝異。

簡單來說,能被 Object.keys()for in 顯示的 property 就稱為 Enumerable Property,一般 Object Literal、Constructor Function 或 class 寫法的 property,都是 Enumerable Property,若要特別設定為 Non Enumerable Property,則要使用 Object.create() 建立 object

Summary


Object.keys() Object.getOwnPropertyNames() for in
Non Enumerable No Yes No
Prototype No No Yes
  • Object.keys() 最中規中矩,不能顯示 Non Enumerable,也不能顯示 Prototype
  • Object.getOwnPropertyNames() 有特異功能可顯示 Non Enumerable,但無法顯示 Prototype
  • for in 有特異功能能顯示 Prototype,但無法顯示 Non Enumerable

Conclusion


  • 三種方式都各有其限制,要視需求選擇合適的方式
  • Object.keys()for..in 搭配 class 時,竟然結果一樣,比較出乎意外,因為篇幅限制,將令開專文討論之

Reference


MDN, Object.keys()
MDN, Object.getOwnPropertyNames()
MDN, for in

2018-11-03