-
-
Save diogocapela/3982f8bf402598e047c04ce1845880aa to your computer and use it in GitHub Desktop.
This file contains 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
console.log('L1'); | |
setTimeout(() => console.log('L2'), 0); | |
new Promise((resolve) => { | |
console.log('L3'); | |
setImmediate(() => console.log('L4')); | |
process.nextTick(() => console.log('L5')) // node backend only | |
resolve(); | |
}) | |
.then(() => console.log('L6')); | |
console.log('L7'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment