Skip to content

Instantly share code, notes, and snippets.

@st3v3nhunt
Created August 8, 2011 21:55
Show Gist options
  • Save st3v3nhunt/1132854 to your computer and use it in GitHub Desktop.
Save st3v3nhunt/1132854 to your computer and use it in GitHub Desktop.
Long way to iterate over an array
var arr = [1,2], i=0, len=arr.length;
for (; i<len; i++) {
console.log('printing: ' + arr[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment