Object's hasOwnProperty() method returns a Boolean value, indicating whether the object contains a specific own (non-inherited) property. Determine whether the attribute existsvar o = new Object(); o.prop = 'exists'; function changeO() { o.newprop = o.prop; delete o.prop; } o.hasOwnProperty('prop'); // true changeO(); o.hasOwnProperty('prop'); // false Determine own attributes and inherited attributesfunction foo() { this.name = 'foo' this.sayHi = function () { console.log('Say Hi') } } foo.prototype.sayGoodBy = function () { console.log('Say Good By') } let 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')) // fail console.log(myPro.hasOwnProperty('sayHi')) // true console.log(myPro.hasOwnProperty('sayGoodBy')) // false console.log('sayGoodBy' in myPro) // true Iterate over all the properties of an objectWhen looking at open source projects, you often see source code similar to the following. The for...in loop enumerates all properties of the object and then uses the hasOwnProperty() method to ignore inherited properties. 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 } } Note hasOwnProperty as the property nameJavaScript does not protect the hasOwnProperty property name, so if there may be an object containing this property name, it is necessary to use an extended hasOwnProperty method to get the correct result: var foo = { hasOwnProperty: function() { return false; }, bar: 'Here be dragons' }; foo.hasOwnProperty('bar'); // always returns false // If you are concerned about this, you can directly use the real hasOwnProperty method on the prototype chain // Use another object's `hasOwnProperty` and call ({}).hasOwnProperty.call(foo, 'bar'); // true // You can also use the hasOwnProperty property on the Object prototype Object.prototype.hasOwnProperty.call(foo, 'bar'); // true Reference Links This is the end of this article about the use of the hasOwnProperty method of js property objects. For more relevant js hasOwnProperty content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to create LVM for XFS file system in Ubuntu
>>: Detailed explanation of Mysql master-slave synchronization configuration practice
The downloaded version is the Zip decompression v...
A composite index (also called a joint index) is ...
This story starts with an unexpected discovery tod...
Let’s take the translation program as an example....
1. Create a new virtual machine from VMware 15.5 ...
1. Preparation before installation: 1.1 Install J...
Three types of message boxes can be created in Ja...
In the SQL like statement, for example SELECT * F...
Recently, a system was deployed, using nginx as a...
I joined a new company these two days. The compan...
Table of contents Preface Idea startup speed Tomc...
Simple application deployment 1. Directory struct...
Introduction to Jib Jib is a library developed by...
React is different from Vue. It implements route ...
The Linux system is a typical multi-user system. ...