Skip to content

Instantly share code, notes, and snippets.

@silesky
Last active October 10, 2017 18:11
Show Gist options
  • Save silesky/b9bd180cf3cc52c99df6355871fdb912 to your computer and use it in GitHub Desktop.
Save silesky/b9bd180cf3cc52c99df6355871fdb912 to your computer and use it in GitHub Desktop.
blog_async_nesting
setTimeout(() => {
console.log('hi')
setTimeout(() => {
console.log('hi')
setTimeout(() => {
console.log('hi')
}, 1000)
}, 2000)
}, 3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment