Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Last active October 9, 2017 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelmaeuer/dc78ac15683b0a0f7cad835c72ebdc85 to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/dc78ac15683b0a0f7cad835c72ebdc85 to your computer and use it in GitHub Desktop.
(function myLoop (i) {
setTimeout(function () {
alert('hello'); // your code here
if (--i) myLoop(i); // decrement i and call myLoop again if i > 0
}, 3000)
})(10); // pass the number of iterations as an argument
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment