Skip to content

Instantly share code, notes, and snippets.

@wvxavier
Last active August 24, 2020 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvxavier/6ac6184842292076210fb6ce845600b3 to your computer and use it in GitHub Desktop.
Save wvxavier/6ac6184842292076210fb6ce845600b3 to your computer and use it in GitHub Desktop.
non-blocking code
console.log('1.Starting up')
setTimeout(() => {
console.log('2.Two seconds!')
}, 2000)
setTimeout(() => {
console.log('3.Zero seconds!')
}, 0)
console.log('4.Finishing up')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment