Skip to content

Instantly share code, notes, and snippets.

@nfantone
Created July 28, 2020 03:19
Show Gist options
  • Save nfantone/e4abd29c231c3f823ccf947b72d05d36 to your computer and use it in GitHub Desktop.
Save nfantone/e4abd29c231c3f823ccf947b72d05d36 to your computer and use it in GitHub Desktop.
The simplest JS loop
for (var i = 0; i < 10; i++) {
console.log(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment