Skip to content

Instantly share code, notes, and snippets.

@Nik19872
Created December 12, 2015 00:54
Show Gist options
  • Save Nik19872/0f31023bbd2bd7d10bd4 to your computer and use it in GitHub Desktop.
Save Nik19872/0f31023bbd2bd7d10bd4 to your computer and use it in GitHub Desktop.
for-loop
var total =0;
var limit = 10;
for (var i = 0; i < 10; i++ ){
total += i;
// log the numbers 0 through 9
}
console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment