Skip to content

Async

Callback

func as a parameter to another func

  • hard to read

Promise

Status:

  • pending
  • fulfilled
  • rejected

new Promise((resolve, reject) => { resolve() })

async/await

Event Loop

The event loop is a mechanism that allows JavaScript to perform non-blocking operations despite being single-threaded. It handles the execution of multiple chunks of your program over time.