Skip to content

Instantly share code, notes, and snippets.

@DLSteve
Last active January 5, 2018 22:42
Show Gist options
  • Save DLSteve/e8704142a0001710a59d94609d17140a to your computer and use it in GitHub Desktop.
Save DLSteve/e8704142a0001710a59d94609d17140a to your computer and use it in GitHub Desktop.
Increment Every 10
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