Skip to content

Instantly share code, notes, and snippets.

@twitchy
Created June 11, 2014 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twitchy/c6e8853c68ca0f0b3bea to your computer and use it in GitHub Desktop.
Save twitchy/c6e8853c68ca0f0b3bea to your computer and use it in GitHub Desktop.
Optimized for loop
var len = thing.length;
for( var i = len; i--; ) {
// stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment