JavaScript Loops: for...in vs for
Solution 1:
Don't use for..in
for Array iteration.
It's important to understand that Javascript Array's square bracket syntax ([]
) for accessing indicies is actually inherited from the Object
...
obj.prop === obj['prop'] // true
The for..in
structure does not work like a more traditional for..each/in
that would be found in other languages (php, python, etc...).
Javascript's for..in
is designed to iterate over the properties of an object. Producing the key of each property. Using this key combined with the Object
's bracket syntax, you can easily access the values you are after.
var obj = {
foo: "bar",
fizz: "buzz",
moo: "muck"
};
for ( var prop in obj ) {
console.log(prop); // foo / fizz / moo
console.log(obj[prop]); // bar / buzz / muck
}
And because the Array is simply an Object with sequential numeric property names (indexes) the for..in
works in a similar way, producing the numeric indicies just as it produces the property names above.
An important characteristic of the for..in
structure is that it continues to search for enumerable properties up the prototype chain. It will also iterate inherited enumerable properties. It is up to you to verify that the current property exists directly on the local object and not the prototype it is attached to with hasOwnProperty()
...
for ( var prop in obj ) {
if ( obj.hasOwnProperty(prop) ) {
// prop is actually obj's property (not inherited)
}
}
(More on Prototypal Inheritance)
The problem with using the for..in
structure on the Array type is that there is no garauntee as to what order the properties are produced... and generally speaking that is a farily important feature in processing an array.
Another problem is that it usually slower than a standard for
implementation.
Bottom Line
Using a for...in
to iterate arrays is like using the butt of a screw driver to drive a nail... why wouldn't you just use a hammer (for
)?
Solution 2:
for...in
is to be used when you want to loop over the properties of an object. But it works the same as a normal for
loop: The loop variable contains the current "index", meaning the property of the object and not the value.
To iterate over arrays, you should use a normal for
loop. buttons
is not an array but a NodeList
(an array like structure).
If iterate over buttons
with for...in
with:
for(var i in a) {
console.log(i)
}
You will see that it output something like:
1
2
...
length
item
because length
and item
are two properties of an object of type NodeList
. So if you'd naively use for..in
, you would try to access buttons['length'].removeAttribute()
which will throw an error as buttons['length']
is a function and not a DOM element.
So the correct way is to use a normal for
loop. But there is another issue:
NodeList
s are live, meaning whenever you access e.g. length
, the list is updated (the elements are searched again). Therefore you should avoid unnecessary calls to length
.
Example:
for(var i = 0, l = buttons.length; i < l, i++)