Skip to content

Instantly share code, notes, and snippets.

@obbaeiei
Created July 23, 2018 17:20
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 obbaeiei/4539c3b465a8fc6642ea9caf8c8891fc to your computer and use it in GitHub Desktop.
Save obbaeiei/4539c3b465a8fc6642ea9caf8c8891fc to your computer and use it in GitHub Desktop.
callback hell
function main() {
console.log(1)
setTimeout(()=>{
console.log(2)
setTimeout(()=>{
console.log(3)
}, 2000)
}, 1000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment