Skip to content

Instantly share code, notes, and snippets.

@reid
Created October 15, 2014 21:22
Show Gist options
  • Save reid/2351c5040dc508836f24 to your computer and use it in GitHub Desktop.
Save reid/2351c5040dc508836f24 to your computer and use it in GitHub Desktop.
setTimeout IEFE
(function again() {
console.log("hello again!");
setTimeout(again, 1000);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment