Skip to content

Instantly share code, notes, and snippets.

@VandeurenGlenn
Last active August 29, 2015 14:25
Show Gist options
  • Save VandeurenGlenn/2f91be2197d9e2ef7f84 to your computer and use it in GitHub Desktop.
Save VandeurenGlenn/2f91be2197d9e2ef7f84 to your computer and use it in GitHub Desktop.
// repeat x times
var quantity = 10;
for (var i = 1; i <=quantity; i++) {
console.log('Runned: ' + i + 'time(s)' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment