js属性对象的hasOwnProperty方法

Posted 巷陌i

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js属性对象的hasOwnProperty方法相关的知识,希望对你有一定的参考价值。

判断自生属性与继承性

 

 function foo() {
            this.name = ‘foo‘
            this.sayHi = function () {
                console.log(‘Say Hi‘)
            }
        }

        foo.prototype.sayGoodBy = function () {
            console.log(‘Say Good By‘)
        }

        var myPro = new foo()

        console.log(myPro.name) // foo
        console.log(myPro.hasOwnProperty(‘name‘)) // true
        console.log(myPro.hasOwnProperty(‘toString‘)) // false
        console.log(myPro.hasOwnProperty(‘hasOwnProperty‘)) // fasle
        console.log(myPro.hasOwnProperty(‘sayHi‘)) // true
        console.log(myPro.hasOwnProperty(‘sayGoodBy‘)) // false
        console.log(‘sayGoodBy‘ in myPro) // true

判断自生属性是否存在

var o = new Object();
o.prop = ‘exists‘;
function changeO() {
    o.newprop = o.prop;
    delete o.prop;
}
console.log(o.hasOwnProperty(‘prop‘));  // true
changeO();
console.log(o.hasOwnProperty(‘prop‘));  // false

遍历一个对象的所有自身属性

在看开源项目的过程中,经常会看到类似如下的源码。for...in循环对象的所有枚举属性,然后再使用hasOwnProperty()方法来忽略继承属性。

var buz = {
    fog: ‘stack‘
};

for (var name in buz) {
    if (buz.hasOwnProperty(name)) {
        alert("this is fog (" + name + ") for sure. Value: " + buz[name]);
    }
    else {
        alert(name); // toString or something else
    }
}
  

 

以上是关于js属性对象的hasOwnProperty方法的主要内容,如果未能解决你的问题,请参考以下文章

js---17继承中方法属性的重写

JS-对象常用方法整理

判断JS对象是否拥有某属性

JS中isPrototypeOf 和hasOwnProperty 的区别 ------- js使用in和hasOwnProperty获取对象属性的区别

js中如何判断一个属性是不是属于某个对象

JS的Object类的属性方法及如何创建对象