Skip to content

Instantly share code, notes, and snippets.

@Uzwername
Last active March 21, 2021 02:01
Show Gist options
  • Save Uzwername/c14cecf5307def2c386544691d4e67b1 to your computer and use it in GitHub Desktop.
Save Uzwername/c14cecf5307def2c386544691d4e67b1 to your computer and use it in GitHub Desktop.
// A magical structure that repeats whatever
// we need to repeat an arbitrary number of times
// ⬇️
for (let i = 0; i <= 10; i++) {
console.log(i); // ⬅️ procedure to repeat
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment