Skip to content

Instantly share code, notes, and snippets.

@vovk1805
Created July 28, 2021 11:19
Show Gist options
  • Save vovk1805/e6f65ba45e02709db096b5d1da7203a8 to your computer and use it in GitHub Desktop.
Save vovk1805/e6f65ba45e02709db096b5d1da7203a8 to your computer and use it in GitHub Desktop.
setTimeout(() => console.log(1));
setTimeout(() => {
console.log(2);
process.nextTick(() => console.log('Inside nextTick'));
});
setTimeout(() => console.log(3));
setTimeout(() => console.log(4));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment