Skip to content

Instantly share code, notes, and snippets.

@parvezmrobin
Created March 5, 2020 16:11
Show Gist options
  • Save parvezmrobin/b4de8442fb010c06e0ec7b52a9b6b57a to your computer and use it in GitHub Desktop.
Save parvezmrobin/b4de8442fb010c06e0ec7b52a9b6b57a to your computer and use it in GitHub Desktop.
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