Sogrey / Web-QA

https://sogrey.github.io/Web-QA/
MIT License
6 stars 2 forks source link

js对象中什么是可枚举性(enumerable)? #319

Open Sogrey opened 3 years ago

Sogrey commented 3 years ago

在JavaScript中,对象的属性分为可枚举和不可枚举之分,它们是由属性的enumerable值决定的。可枚举性决定了这个属性能否被for…in查找遍历到。

怎么判断属性是否可枚举

js中基本包装类型的原型属性是不可枚举的,如Object, Array, Number等,如果你写出这样的代码遍历其中的属性:

var num = new Number();
for(var pro in num) {
    console.log("num." + pro + " = " + num[pro]);
}

Object对象的 propertyIsEnumerable() 方法可以判断此对象是否包含某个属性,并且这个属性是否可枚举。它的输出结果会是空。这是因为Number中内置的属性是不可枚举的,所以不能被for…in访问到。

需要注意的是:如果判断的属性存在于Object对象的原型内,不管它是否可枚举都会返回false。

枚举性的作用

属性的枚举性会影响以下三个函数的结果:

设置对象属性不可枚举

var o = {
    name : [1, 2, 3],
    age : 34
}
Object.defineProperty(o, "name", {
    enumerable : false,         // 不能枚举,表示在o对象被枚举时,name属性不可见
});
for(var v in o) {
    console.log(v); // return : 34,仅仅只是枚举了age属性,而name属性正好被屏蔽了
}
console.log(o.propertyIsEnumerable("name"));        // return:false ,不能枚举