var myArr = [{a:1, b:2}, {c:3, d:4}];
for (var item in myArr) {
console.log(item);
}
Item returns the key (ex: 0, 1) instead of the object itself. Why?
Item returns the key (ex: 0, 1) instead of the object itself. Why? |
|||
|
|
|
Douglas Crockford recommends in JavaScript: The Good Parts to avoid using the If you use The E.g,
There’s no way we can get the property name if we were to use the For Each Loop for the above object. Note :
|
|||||||||
|
|
The It will also iterate over properties inherited from the object's |
|||||||||
|
|
Javascript
However, as said before, the
|
|||
|
|