Skip to content

Instantly share code, notes, and snippets.

@jtenner
Created November 5, 2013 18:20
Show Gist options
  • Save jtenner/7323579 to your computer and use it in GitHub Desktop.
Save jtenner/7323579 to your computer and use it in GitHub Desktop.
var array = [1,2,3,4,5,6,7,8,9,10];
for(var i = 0, _len = array.length; i < _len; i++){
//do something with array[i]
}
// new snippet
var j = 0, _len = array.length;
while(j < _len){
//do something with array[j]
j++;//increment j...
}
///etc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment