Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nafeu/1104ce713cb7b2843205203bb2b5cd4f to your computer and use it in GitHub Desktop.
Save nafeu/1104ce713cb7b2843205203bb2b5cd4f to your computer and use it in GitHub Desktop.
console.log('1 | print immediately');
setTimeout(() => {
console.log('2 | print after one second');
setTimeout(() => {
console.log('3 | print one second after line 2');
}, 1000);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment