Last active
June 8, 2019 10:43
-
-
Save irridescentrambler/2220e58e7ddf2388e95d9962a999eba0 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
function main(){ | |
console.log("I'll have my breakfast"); | |
setTimeout(() => { | |
console.log("I'll have my lunch"); | |
}, 0); | |
console.log("I'll have my dinner"); | |
} | |
main(); | |
// Output | |
// I'll have my breakfast | |
// I'll have my dinner | |
// I'll have my lunch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment