Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm very new to JavaScript, but i do have a little bit of knowledge of c#.

What I have in my JavaScript is a array of objects. This array will have a variating length.

At a certain point, I want to do something to all the objects in that array.

How do I do this with JavaScript ?

I thought of something like this: forEach(instance in objects) (where objects is my array of objects) but this does not seem to be correct for JavaScript ?

Anyone can help me out a bit here?

Thank you

share|improve this question
have you tried searching for this? It hardly warrants another question and answer. – Mr E Feb 17 '12 at 13:53
2  
I did look for it, but i looked for forEach and not just for. as stated, in c# it was a bit different, and that confused me :) – Dante1986 Feb 17 '12 at 13:57

9 Answers

up vote 88 down vote accepted

The standard way to iterate an array in Javascript is a vanilla for-loop:

var length = arr.length,
    element = null;
for (var i = 0; i < length; i++) {
  element = arr[i];
  // Do something with element i.
}

Note, however, that this approach is only good if you have a dense array, and each index is occupied by an element. If the array is sparse, then you can run into performance problems with this approach, since you will iterate over a lot of indices that do not really exist in the array. In this case, a for .. in-loop might be a better idea. However, you must use the appropriate safeguards to ensure that only the desired properties of the array (i.e the array elements) are acted upon, since the for..in-loop will also be enumerated in legacy browsers, or if the additional properties are defined as enumerable.

In ECMAScript 5 there will be a forEach-method on the array prototype, but it is not supported in legacy browsers. So to be able to use it consistently you must either have an environment that supports it (i.e. NodeJS for server side Javascript), or use a "Polyfill". The Polyfill for this functionality is, however, trivial and since it makes the code easier to read, it is a good polyfill to include.

share|improve this answer
8  
No, it's not the only correct way. for..in is okay if you use adequate safeguards, and it has a useful purpose (sparse arrays). It's not what you do by default, but it has a purpose. You're also mistaken about ES5 support. Support amongst browsers is very wide. Every major browser's current version supports it, and other than IE it goes several versions back. It's fair to say that roughly half of web users use a browser that doesn't have it, but that's different, and the polyfill is trivial. – T.J. Crowder Feb 17 '12 at 14:09
Fair enough, you are quite right. I'll edit my post to reflect these points. – PatrikAkerstrand Feb 17 '12 at 14:11
why is for(instance in objArray) not a correct usage ? it looks more simple to me, but i hear you speak of it as not a correct way for usage ? – Dante1986 Feb 17 '12 at 14:12
7  
calling the vanilla for loop the "only correct way" is misinformation, and blatantly incorrect. – zzzzBov Feb 17 '12 at 14:17
3  
@zzzzBov I agree. I was too quick, and have amended my answer. If it is still blatantly incorrect, please feel free to edit the answer for me =) – PatrikAkerstrand Feb 17 '12 at 14:20
show 1 more comment

Three options:

1) If you're using an environment that supports the new features of ECMAScript5, you can use the new forEach function:

var a = ["a", "b", "c"];
a.forEach(function(entry) {
    console.log(entry);
});

Using forEach on a general-purpose web page still (as of May 2013) requires that you include a "shim" for it for browsers that don't support it natively, because IE8 and earlier don't have it (and they're about 30% of global browser use; more like 23% if you don't need to support China). But that's easily done (search for "es5 shim" for several options).

forEach has the benefit that you don't have to declare indexing and entry variables in the containing scope, as they're supplied as arguments to the iteration function, and so nicely scoped to just that iteration.

If you're worried about the runtime cost of making a function call for each array entry, don't be; details.

2) Use a simple for loop:

var index;
var a = ["a", "b", "c"];
for (index = 0; index < a.length; ++index) {
    console.log(a[index]);
}

3) You'll get people telling you to use for..in, but that's not what for.in is for. for..in loops through the enumerable properties of an object, not the indexes of an array. Still, it can be useful (particularly for sparse arrays) if you use appropriate safeguards:

// `a` is a sparse array
var key;
var a = [];
a[0] = "a";
a[10] = "b";
a[10000] = "c";
for (key in a) {
    if (String(Number(key)) === key && a.hasOwnProperty(key)) {
        console.log(a[key]);
    }
}

That's added overhead per loop iteration on most arrays, but if you have a sparse array, it can be a more efficient way to loop because it only loops for entries that actually exist.

share|improve this answer
26  
This is really a better answer and should be the accepted one. – PatrikAkerstrand Feb 17 '12 at 14:26
8  
small warning: IE8 not supported - kangax.github.com/es5-compat-table – Somatik Jan 25 at 13:17
1  
@Lepidosteus: Your edit "avoiding" a "global" did nothing of the sort. JavaScript doesn't have block-level scope (yet; ES6 will, via let rather than var). And I would assume the code is in a function anyway, so globals don't come into it. – T.J. Crowder Apr 1 at 13:14
@T.J.Crowder in a browser, if you don't use "var" on a javascript variable, it is defined in the "window" scope,try it yourself in the debug console of your browser: var foo = function() { for (i = 0; i < 1; i++); }; foo(); console.log(window.i); and var foo = function() { for (var k = 0; k < 1; k++); }; foo(); console.log(window.k); as you can see window.i exists but not window.k . My edit was indeed unnecessary, but only because you had a var index at the top that I missed. – Lepidosteus Apr 1 at 19:38
@Lepidosteus: Yes, I call it The Horror of Implicit Globals‌​. But as you say, it wasn't relevant here, because I did declare index. And thankfully, nowadays we can use strict mode. :-) – T.J. Crowder Apr 1 at 21:30
show 4 more comments

Some c-style languages use foreach to loop through enumerations. In JavaScript this is done with the for..in loop structure:

var index,
    value;
for (index in obj) {
    value = obj[index];
}

There is a catch. for..in will loop through each of the object's enumerable members, and the members on its prototype. To avoid reading values that are inherited through the object's prototype, simply check if the property belongs to the object:

for (i in obj) {
    if (obj.hasOwnProperty(i)) {
        //do stuff
    }
}

Additionally, ECMAScript 5 has added a forEach method to Array.prototype which can be used to enumerate over an array using a calback (the polyfill is in the docs so you can still use it for older browsers):

arr.forEach(function (val, index, theArray) {
    //do stuff
});

It's important to note that Array.prototype.forEach doesn't break when the callback returns false. jQuery and Underscore.js provide their own variations on each to provide loops that can be short-circuited.

share|improve this answer
very in-depth for me – Tyler Oct 10 '12 at 7:44
So how does one break out of a a ECMAScript5 foreach loop like we would for a normal for loop or a foreach loop like that found in C-style languages? – CiaranG Mar 3 at 18:35
2  
@CiaranG, in JavaScript it's common to see each methods that allow return false to be used to break out of the loop, but with forEach this isn't an option. An external flag could be used (ie if (flag) return;, but it would only prevent the rest of the function body from executing, forEach would still continue iterating over the entire collection. – zzzzBov Mar 3 at 19:08

you can use each

 $.each(yourarray,function(index, value){ 
//Do your stuff here
 });
share|improve this answer
5  
Given that the OP mentions being new to JavaScript it should be pointed out that $.each() is a method of the jQuery library, not a built-in JavaScript thing. – nnnnnn Feb 17 '12 at 14:13
hmm,I didn't read it carefully ,ignore my answer,I will take care of it from next time onwards,thanks @nnnnnn – Poonam Feb 17 '12 at 14:17
While the OP is not using jQuery, many of us are. I am definitely going this route, so thank you for pointing me in a better direction! – zacharydl Apr 26 at 2:09
you are welcome @zacharydl – Poonam Apr 26 at 11:21

A forEach implementation (see in jsFiddle):

function forEach(list,callback) {
  for (var n = 0; n < list.length; n++) {
    callback.call(list[n]);
  }
}

var myArray = ['hello','world'];

forEach(
  myArray,
  function(){
    alert(this); // do something
  }
);
share|improve this answer

If you want to loop over an array, use the standard three-part for loop.

for (var i = 0; i < myArray.length; i++) {
    var arrayItem = myArray[i];
}

You can get some performance optimisations by caching myArray.length or iterating over it backwards.

share|improve this answer
1  
for (var i = 0, length = myArray.length; i < length; i++) should do it – Edson Medina Mar 28 at 2:20
objects.map( function( oldVal ) { 
  // do your stuff 
  return newVal;
} );
share|improve this answer
Only if you can rely on the script being run on a JS 1.6 engine or later. – Quentin Feb 17 '12 at 13:58

there is no for each loop in native javascript. You can either use libraries to have this functionality (I recommend underscore), use a simple for in loop.

for (var instance in objects) {
   ...
}

However, note that there may be reasons to use an even simpler for loop (see JavaScript "For ...in" with Arrays)

var instance;
for (var i=0; i < objects.length; i++) {
    var instance = objects[i];
    ...
}
share|improve this answer
while(x=y.pop()){ 

alert(x); //do something 

}

x will contain the last value of y and it will be removed from the array. You can also use push() which will give and remove the first item from y.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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