Created
October 4, 2013 05:15
-
-
Save Daniel-Hug/6821253 to your computer and use it in GitHub Desktop.
Decrementing for loop with cached variable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (var i = document.images.length; i--;) { | |
document.images[i].src = 'cat.png'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment