Skip to content

Instantly share code, notes, and snippets.

@fatgy
Created December 8, 2010 05:20
Show Gist options
  • Save fatgy/732927 to your computer and use it in GitHub Desktop.
Save fatgy/732927 to your computer and use it in GitHub Desktop.
for loop
var anchors = document.getElementsByTagName("a");
for (var i = 0, j = anchors.length; i < j; i += 1) {
// do some stuff here
}
var anchors = document.getElementsByTagName("a");
for (var i = anchors.length; i > 0; i -= 1) {
// do some stuff here
}
for (var i=0, item; item = someArray[i]; i++) {
alert(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment