Skip to content

Instantly share code, notes, and snippets.

@felixzapata
Created November 17, 2012 10:27
Show Gist options
  • Save felixzapata/4094723 to your computer and use it in GitHub Desktop.
Save felixzapata/4094723 to your computer and use it in GitHub Desktop.
use an efficient for loop as there may be a lot to cycle through
var i, len = titles.length;
for(i = len-1; i >- 1; i--){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment