Skip to content

Instantly share code, notes, and snippets.

@BolajiOlajide
Created February 25, 2018 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BolajiOlajide/301bdf0d72fbf2752bbf423085022091 to your computer and use it in GitHub Desktop.
Save BolajiOlajide/301bdf0d72fbf2752bbf423085022091 to your computer and use it in GitHub Desktop.
an example illustrating the concept of iteration
var step;
for (step = 0; step < 5; step++) {
// Runs 5 times, with values of step 0 through 4.
console.log('Walking east one step');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment