Created
June 25, 2011 10:21
-
-
Save ericelliott/1046348 to your computer and use it in GitHub Desktop.
Array iteration examples.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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.'); | |
} | |
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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.'); | |
} | |
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (; knight = knights[i++] ;) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (var i = 0; i < knights.length; i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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.'); | |
} | |
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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.'); | |
} | |
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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