Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created June 25, 2011 10:21
Show Gist options
  • Save ericelliott/1046348 to your computer and use it in GitHub Desktop.
Save ericelliott/1046348 to your computer and use it in GitHub Desktop.
Array iteration examples.
(function () {
var knights = ['King Arthur', 'Sir Lancelot', 'Patsy', 'Sir Robin', 'Sir Bedevere', 'Sir Galahad'];
for (var i = 0; i < knights.length; i++) {
console.log(knights[i] + ': bunny kibble.');
}
}());
(function () {
var knights = ['King Arthur', 'Sir Lancelot', 'Patsy', 'Sir Robin', 'Sir Bedevere', 'Sir Galahad'],
length = knights.length, // cache the length
i = 0; // pre-initialize
for (; i < length; i++) {
console.log(knights[i] + ': died in a furry flash.');
}
}());
for (; knight = knights[i++] ;) {
for (var i = 0; i < knights.length; i++) {
(function () {
var knight,
knights = ['King Arthur', 'Sir Lancelot', 'Patsy', 'Sir Robin', 'Sir Bedevere', 'Sir Galahad'],
i = 0;
for (; knight = knights[i++] ;) {
console.log(knight + ': life shortened by a hare.');
}
}());
(function () {
var knight,
knights = ['King Arthur', 'Sir Lancelot', 'Patsy', 'Sir Robin', 'Sir Bedevere', 'Sir Galahad'],
i = 0;
while ( knight = knights[i++] ) {
console.log(knight + ': life shortened by a hare.');
}
}());
(function () {
var knights = ['King Arthur', 'Sir Lancelot', 'Patsy', 'Sir Robin', 'Sir Bedevere', 'Sir Galahad'],
i = knights.length;
while (i--) {
console.log(knights[i] + ': tripped while running backwards.');
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment