Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created April 29, 2020 04:38
Show Gist options
  • Save bitfishxyz/fa880cc0666f5f8b5d5090f2d10aaf76 to your computer and use it in GitHub Desktop.
Save bitfishxyz/fa880cc0666f5f8b5d5090f2d10aaf76 to your computer and use it in GitHub Desktop.
console.log('start')
setTimeout(() => {
console.log('setTimeout')
})
Promise.resolve().then(() => {
console.log('resolve')
})
console.log('end')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment