I faced a strange behaviour in Javascript. I get

"Object doesn't support this property or method"

exception for the removeAttribute function in the following code:

var buttons = controlDiv.getElementsByTagName("button");
for ( var button in buttons )
    button.removeAttribute('disabled');

When I change the code with the following, the problem disappears:

var buttons = controlDiv.getElementsByTagName("button");
for ( var i = 0; i < buttons.length; i++ )
    buttons[i].removeAttribute('disabled');

What is the value of button inside the for...in?

link|improve this question

68% accept rate
Try it: for ( var button in buttons ) alert( button ); so you can see what for .. in sets button to. – Thai Mar 10 '11 at 18:14
feedback

3 Answers

up vote 16 down vote accepted

First, in Javascript, array's are just objects with sequential numeric property names and a few extra methods. Because of this, the common array notation (array[0]) also works for objects, and creates inherent reflection (object['property']). The reason this is important is because it's the sole use for the for..in. To iterate over an object's enumerable properties.

The for...in only provides the enumerable property name of the current iterated element, not the element itself like you are probably use to with other language's foreach construct.

example of proper for...in

var obj = {};
for ( property in obj ) {
    // property is a string with the current iterated property name
    //  so, obj[property] is available
}

Understand that the for...in combined with javascript's inherent reflection

obj.property === obj['property']  // true

allows you to use it to iterate over an object's properties.

Also, javascript uses Prototypal Inheritance. The javascript for...in construct goes deep into the iterated object and produces not only the current object's property names, but also it's inherited prototype property names as well. This is not usually the desired behavior. In order to filter out the inherited property names, use .hasOwnProperty()

var obj = {};
for ( property in obj ) {
    if ( obj.hasOwnProperty(property) ) {
        // property is actually obj's property (not inherited)
    }
}

it is typically a bad idea to use for...in to iterate over arrays for a few reasons:

  • there is no guarantee of the order the properties will be produced
  • for performance reasons, usually lends a speed reduction over standard for
  • unnecessarily complicated when compared to 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)?

link|improve this answer
2  
This is correct, but there's another reason to avoid using for ... in for arrays. From MDC: ...the for...in statement will return the name of your user-defined properties in addition to the numeric indexes. ... – jball Mar 10 '11 at 18:14
+1 for performance. – Praveen Prasad Mar 10 '11 at 18:22
feedback

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:

NodeLists 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++)
link|improve this answer
2  
For avoiding calls to length, I prefer for (var i = 0; i in buttons; i++). I like how explicit this check is, rather than implicitly checking against the length. – gilly3 Mar 10 '11 at 18:25
1  
@gilly3: Actually I prefer for(var i = buttons.length; i--; ) but sometimes the order is important. And I could imagine that i in buttons still reevaluates the list (besides that it is probably slower than a number comparison). – Felix Kling Mar 10 '11 at 18:27
feedback

for(var key in obj) { } iterates over all elements in the object, including those of its prototypes. So if you are using it and cannot know nothing extended Object.prototype you should always test obj.hasOwnProperty(key) and skip the key if this check returns false.

for(start; continuation; loop) is a C-style loop: start is executed before the loop, continuation is tested and the loop only continues while it's true, loop is executed after every loop.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.