Last active
January 5, 2018 22:42
-
-
Save DLSteve/e8704142a0001710a59d94609d17140a to your computer and use it in GitHub Desktop.
Increment Every 10
This file contains hidden or 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
var outerVar = 0; | |
for (var i = 0; i < 100; i++) { | |
if (i % 10 === 0) { | |
outerVar++ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment