Skip to content

Instantly share code, notes, and snippets.

@Nathan-Nesbitt
Created May 10, 2020 00:04
Show Gist options
  • Save Nathan-Nesbitt/e3a9d88187e297ad8533d82cb79fdcf3 to your computer and use it in GitHub Desktop.
Save Nathan-Nesbitt/e3a9d88187e297ad8533d82cb79fdcf3 to your computer and use it in GitHub Desktop.
While Loop Example
/*
This prints out the numbers from 0 to 9
*/
// Initialize
var i = 0;
// Evaluate
while(i < 10) {
console.log(i);
// Increment
i++;
}
@Nathan-Nesbitt
Copy link
Author

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