Skip to content

Instantly share code, notes, and snippets.

@Dornhoth
Created December 7, 2019 16:52
Show Gist options
  • Select an option

  • Save Dornhoth/d758011d9ac59c58cbf38995c665e342 to your computer and use it in GitHub Desktop.

Select an option

Save Dornhoth/d758011d9ac59c58cbf38995c665e342 to your computer and use it in GitHub Desktop.
setTimeout(() => {
console.log('Hello timeout!');
}, 1000); //will print "Hello timeout!" once, after 1 second
setInterval(() => {
console.log('Hello interval!');
}, 1000) //will print "Hello interval!" every 1 second
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment