Created
March 5, 2020 16:11
-
-
Save parvezmrobin/b4de8442fb010c06e0ec7b52a9b6b57a 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
console.log("1"); | |
setTimeout(() => { | |
console.log("2"); | |
setTimeout(() => { | |
console.log("3"); | |
}, 0); | |
console.log("4"); | |
}, 0); | |
setTimeout(() => { | |
console.log("5"); | |
setTimeout(() => { | |
console.log("6"); | |
}, 0); | |
console.log("7"); | |
}, 0); | |
console.log("8"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment