Skip to content

Instantly share code, notes, and snippets.

@Sljubura
Last active December 12, 2015 04:49
Show Gist options
  • Save Sljubura/4717529 to your computer and use it in GitHub Desktop.
Save Sljubura/4717529 to your computer and use it in GitHub Desktop.
Efficient array iterator.
var arr = [],
i = arr.length;
while (i--) {
// Do something with array.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment