Created
July 28, 2021 11:19
-
-
Save vovk1805/e6f65ba45e02709db096b5d1da7203a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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