Skip to content

Instantly share code, notes, and snippets.

@manfromanotherland
Created August 7, 2015 23:39
Show Gist options
  • Save manfromanotherland/e4f0a2a3c29bc7ec32b4 to your computer and use it in GitHub Desktop.
Save manfromanotherland/e4f0a2a3c29bc7ec32b4 to your computer and use it in GitHub Desktop.
JS: Basic for loop
// Basic for loop
for(var i = 0; i < 5; i++) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment