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.
forEachand not justfor. as stated, in c# it was a bit different, and that confused me :) – Dante1986 Feb 17 '12 at 13:57