Skip to content

Instantly share code, notes, and snippets.

@Nathan-Nesbitt
Created May 10, 2020 00:19
Show Gist options
  • Save Nathan-Nesbitt/5d3883f75f0ff8dff4130d1a7e9712c8 to your computer and use it in GitHub Desktop.
Save Nathan-Nesbitt/5d3883f75f0ff8dff4130d1a7e9712c8 to your computer and use it in GitHub Desktop.
For Loop
/*
Prints out the values from 0 to 9
*/
// Initialization, Evaluation, and Increment
// all in one line
for(var i = 0; i < 10; i++) {
console.log(i);
}
@Nathan-Nesbitt
Copy link
Author

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