Created
July 16, 2019 15:56
-
-
Save deleteman/23f1bb123bc26261f5a5c03c8929233d to your computer and use it in GitHub Desktop.
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
for(let a = 0, b = 0; a < 10 && b < 100; a++, b+=10) { | |
console.log(a, b) | |
} | |
/* | |
0 0 | |
1 10 | |
2 20 | |
3 30 | |
4 40 | |
5 50 | |
6 60 | |
7 70 | |
8 80 | |
9 90 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JavaScript... Forloops... Great learning tool.
AAS ITI WTI MICHIGAN