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)?
for ( var button in buttons ) alert( button );so you can see whatfor..insetsbuttonto. – Thai Mar 10 '11 at 18:14