Skip to content

Instantly share code, notes, and snippets.

@deleteman
Created July 16, 2019 15:56
Show Gist options
  • Save deleteman/23f1bb123bc26261f5a5c03c8929233d to your computer and use it in GitHub Desktop.
Save deleteman/23f1bb123bc26261f5a5c03c8929233d to your computer and use it in GitHub Desktop.
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
*/
@Wiltel492018
Copy link

JavaScript... Forloops... Great learning tool.
AAS ITI WTI MICHIGAN

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment