Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created April 29, 2020 04:50
Show Gist options
  • Save bitfishxyz/76e9caa1682d6af8f975ec677a0c39aa to your computer and use it in GitHub Desktop.
Save bitfishxyz/76e9caa1682d6af8f975ec677a0c39aa to your computer and use it in GitHub Desktop.
const timer1 = setTimeout(() => {
console.log('timer1');
const timer3 = setTimeout(() => {
console.log('timer3')
}, 0)
}, 0)
const timer2 = setTimeout(() => {
console.log('timer2')
}, 0)
console.log('start')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment