Object.prototype.hasOwnProperty(prop)函数,不会查找该属性的原型链上的属性。和in不同.
//例如:
let obj = {
a: 10
}
console.log("a" in obj) //true
console.log("toString" in obj) //true
console.log(obj.hasOwnProperty("a")) //true
console.log(obj.hasOwnProperty("toString")) //false
//如果使用hasOwnProperty作为对象的属性名
let obj = {
hasOwnProperty:function() {
return false
},
bar:"foo"
}
console.log(obj.hasOwnProperty("bar")) //false
解决方案
let obj = {
hasOwnProperty:function() {
return false
},
bar:"foo"
}
console.log(({}).hasOwnProperty.call(obj, "bar")) //true
console.log(Object.prototype.hasOwnProperty.call(obj,"bar"))