Skip to content

Instantly share code, notes, and snippets.

@antondevv
Created February 13, 2022 14:13
Show Gist options
  • Save antondevv/c871fc8935cfe5fe49fe72a57b85b28c to your computer and use it in GitHub Desktop.
Save antondevv/c871fc8935cfe5fe49fe72a57b85b28c to your computer and use it in GitHub Desktop.
promises
setTimeout(() => {
console.log("Using callback queue")
}, 0)
new Promise(resolve => resolve(console.log("Using micro queue")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment