Skip to content

Instantly share code, notes, and snippets.

@irridescentrambler
Last active June 8, 2019 10:43
Show Gist options
  • Save irridescentrambler/2220e58e7ddf2388e95d9962a999eba0 to your computer and use it in GitHub Desktop.
Save irridescentrambler/2220e58e7ddf2388e95d9962a999eba0 to your computer and use it in GitHub Desktop.
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