Skip to content

Instantly share code, notes, and snippets.

@nekonado
Created September 29, 2023 14:08
Show Gist options
  • Save nekonado/57c75e159a38478a417cf335144889e5 to your computer and use it in GitHub Desktop.
Save nekonado/57c75e159a38478a417cf335144889e5 to your computer and use it in GitHub Desktop.
console.log("[1]");
setTimeout(() => {
console.log("[7]");
});
Promise.resolve()
.then(() => {
console.log("[3]");
})
.then(() => {
console.log("[5]");
});
Promise.resolve()
.then(() => {
console.log("[4]");
})
.then(() => {
console.log("[6]");
});
console.log("[2]");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment