Home Web Front-end JS Tutorial Use of for in loop and hasOwnProperty in Javascript_javascript tips

Use of for in loop and hasOwnProperty in Javascript_javascript tips

May 16, 2016 pm 05:32 PM
for hasownproperty

Compared with the in operator, for in will also traverse the prototype chain when looping the properties of the object. For in will not read non-enumerable properties, such as the length property of an array. Summary: When detecting whether an object has a certain property, hasOwnProperty is the only method that can complete this task. In the for in loop, it is recommended to add hasOwnProperty for judgment, which can effectively avoid errors caused by extending the local prototype.

Compared with the in operator, for in will also traverse the prototype chain when looping the properties of the object. for in will not read non-enumerable properties, such as the length property of an array.

Copy code The code is as follows:

// Extend Object.prototype
Object.prototype.bar = 1;
var foo = {moo: 2};
for(var i in foo) {
console.log(i); // Output bar and moo
}


We cannot change the behavior of the for in loop. When we need to filter certain properties in the loop body, we can use the hasOwnProperty method of Object.prototype to complete it.

Tip: Because the for in loop always traverses the entire prototype chain, it is less efficient when traversing multiple inherited objects.

Use hasOwnProperty to filter

Copy code The code is as follows:

// Still targeting the foo object in the above example
for (var i in foo) {
if (foo.hasOwnProperty(i)) {
console.log(i);
}
}


In the example, because hasOwnProperty is used, moo is eventually output; if hasOwnProperty is ignored, the code will output unexpected results because the local prototype (such as Object.prototype) has been extended .

The Prototype framework is a class library that extends Javascript original objects and is widely used. Its shortcomings are also obvious. When the framework is introduced, if you do not use hasOwnProperty for filtering and judgment, the output results are guaranteed not to be what you want. .

Best Practices

It is recommended to always use hasOwnProperty for judgment when for in. No one can guarantee whether the running code environment has been contaminated.

hasOwnProperty
In order to check whether an object has a custom property that is not on the prototype chain, it is necessary to use the hasOwnProperty method. Any object has this method, which inherits from Object.prototype.

Tip: We cannot completely detect whether a property is undefined, because the property may exist, but its value is undefined. hasOwnProperty is the only method in Javascript that can handle object properties without traversing the prototype chain.

Copy code The code is as follows:

// Extend Object.prototype
Object.prototype.bar = 1;
var foo = {goo: undefined};

foo.bar; // 1
'bar' in foo; // true

foo.hasOwnProperty('bar'); // false
foo.hasOwnProperty('goo'); // true


Only hasOwnProperty gives the correct expected result, This is necessary when iterating over an object's properties; there is no other way to exclude properties defined on the object's prototype chain.

hasOwnProperty as a property

Javascript does not protect hasOwnProperty as a keyword or reserved word, so if an object has a property with the same name, it is necessary to use the extended hasOwnProperty to get the correct results.

Copy code The code is as follows:

var foo = {
hasOwnProperty: function() {
return false;
},
bar: 'Here be dragons'
};
foo.hasOwnProperty('bar'); // always returns false
// Call it using another hasOwnProperty and setting this to foo
{}.hasOwnProperty.call(foo, 'bar'); // true


Summary
When detecting whether an object has a certain property, hasOwnProperty is the only method that can complete this task. In the for in loop, it is recommended to add hasOwnProperty for judgment, which can effectively avoid errors caused by extending the local prototype.
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

17 ways to solve the kernel_security_check_failure blue screen 17 ways to solve the kernel_security_check_failure blue screen Feb 12, 2024 pm 08:51 PM

Kernelsecuritycheckfailure (kernel check failure) is a relatively common type of stop code. However, no matter what the reason is, the blue screen error causes many users to be very distressed. Let this site carefully introduce 17 types to users. Solution. 17 solutions to kernel_security_check_failure blue screen Method 1: Remove all external devices When any external device you are using is incompatible with your version of Windows, the Kernelsecuritycheckfailure blue screen error may occur. To do this, you need to unplug all external devices before trying to restart your computer.

How to uninstall Skype for Business on Win10? How to completely uninstall Skype on your computer How to uninstall Skype for Business on Win10? How to completely uninstall Skype on your computer Feb 13, 2024 pm 12:30 PM

Can Win10 skype be uninstalled? This is a question that many users want to know, because many users find that this application is included in the default program on their computers, and they are worried that deleting it will affect the operation of the system. Let this website help users Let’s take a closer look at how to uninstall Skype for Business in Win10. How to uninstall Skype for Business in Win10 1. Click the Windows icon on the computer desktop, and then click the settings icon to enter. 2. Click "Apply". 3. Enter "Skype" in the search box and click to select the found result. 4. Click "Uninstall". 5

How to use for to find the factorial of n in JavaScript How to use for to find the factorial of n in JavaScript Dec 08, 2021 pm 06:04 PM

How to use for to find n factorial: 1. Use the "for (var i=1;i<=n;i++){}" statement to control the loop traversal range to "1~n"; 2. In the loop body, use "cj *=i" Multiply the numbers from 1 to n, and assign the product to the variable cj; 3. After the loop ends, the value of the variable cj is the factorial of n, and then output it.

What is the difference between foreach and for loop What is the difference between foreach and for loop Jan 05, 2023 pm 04:26 PM

Difference: 1. for loops through each data element through the index, while forEach loops through the data elements of the array through the JS underlying program; 2. for can terminate the execution of the loop through the break keyword, but forEach cannot; 3. for can control the execution of the loop by controlling the value of the loop variable, but forEach cannot; 4. for can call loop variables outside the loop, but forEach cannot call loop variables outside the loop; 5. The execution efficiency of for is higher than forEach.

How to use hasownproperty How to use hasownproperty Dec 04, 2023 am 11:21 AM

hasOwnProperty is a method on the JavaScript built-in object prototype (Object.prototype), which is used to check whether the object's own properties contain the specified property, rather than the properties inherited from its prototype chain. The basic syntax is "obj.hasOwnProperty(prop)".

What are the common flow control structures in Python? What are the common flow control structures in Python? Jan 20, 2024 am 08:17 AM

What are the common flow control structures in Python? In Python, the flow control structure is an important tool used to determine the execution order of the program. They allow us to execute different blocks of code based on different conditions, or to execute a block of code repeatedly. The following will introduce common process control structures in Python and provide corresponding code examples. Conditional statements (if-else): Conditional statements allow us to execute different blocks of code based on different conditions. Its basic syntax is: if condition 1: #when condition

Use the Go language for loop to quickly implement the flip function Use the Go language for loop to quickly implement the flip function Mar 25, 2024 am 10:45 AM

Implementing the flip function using Go language can be implemented very quickly through a for loop. The flip function is to reverse the order of elements in a string or array, and can be applied in many scenarios, such as string flipping, array element flipping, etc. Let's take a look at how to use the for loop of Go language to realize the flip function of strings and arrays, and attach specific code examples. String flipping: packagemainimport(&quot;fmt&quot;)fun

Comparison of the pros and cons of iterators and for loops in Java Comparison of the pros and cons of iterators and for loops in Java Apr 22, 2023 pm 02:28 PM

1. Conceptual understanding for loop: It is a general structure that supports iteration. It is the most effective and flexible loop structure. Iterator: It is obtained through the iterator() method of the collection, so we say that it exists dependent on the collection. Foreach: By reading the source code, we also found an Iterable interface. It contains an iterator() method that generates an Iterator object, and the Iterator object is used by foreach to move in the sequence. Can be used for any object that implements the Iterable interface. 2. Efficiency comparison in efficiency instance ArrayList: Listintegers=Lists.newArrayLi

See all articles