最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to check if a property exists in an object's prototype chain? - Stack Overflow

programmeradmin1浏览0评论

I am a newbie in Javascript and trying to learn this language. After going through several posts I figured out that in order to check an Object's particular property we can broadly use one of the following methods.

1] Using hasOwnProperty

Object.hasOwnProperty("propertyName")

However this does not check properties inherited from the Object's prototype chain.

2] Loop over all the properties and check if property exists.

for(propertyName in myObject) {
    // Check if "propertyName" is the particular property you want.
}

Using this you can check Object's properties in the prototype chain too.

My question is: Is there a method other than 2] by which I can check if "propertyName" is a property in Object's prototype chain? Something similar to "hasOwnProperty" and without looping?

I am a newbie in Javascript and trying to learn this language. After going through several posts I figured out that in order to check an Object's particular property we can broadly use one of the following methods.

1] Using hasOwnProperty

Object.hasOwnProperty("propertyName")

However this does not check properties inherited from the Object's prototype chain.

2] Loop over all the properties and check if property exists.

for(propertyName in myObject) {
    // Check if "propertyName" is the particular property you want.
}

Using this you can check Object's properties in the prototype chain too.

My question is: Is there a method other than 2] by which I can check if "propertyName" is a property in Object's prototype chain? Something similar to "hasOwnProperty" and without looping?

Share Improve this question edited Mar 21, 2014 at 18:40 MattDiamant 8,8014 gold badges38 silver badges47 bronze badges asked Mar 21, 2014 at 18:38 FictionalCoderFictionalCoder 1151 silver badge6 bronze badges 2
  • 5 Uhm if ('propertyName' in myObject), you don't have to iterate ? – adeneo Commented Mar 21, 2014 at 18:39
  • 1 Why not if ('propertyName' in obj.prototype) ??? – A. Wolff Commented Mar 21, 2014 at 18:57
Add a ment  | 

2 Answers 2

Reset to default 9

You can just check the property directly with in, and it will check the prototype chain as well, like this

if ('propertyName' in myObject)

an example

var obj = function() {};

obj.prototype.test = function() {};

var new_obj = new obj();

console.log( 'test' in new_obj ); // true
console.log( 'test22222' in new_obj ); // false
console.log( new_obj.hasOwnProperty('test') ); // false

FIDDLE

Reflect.has can make a work for you

console.log(Reflect.has({}, 'toString')); // true
发布评论

评论列表(0)

  1. 暂无评论