Dhananjay Patel Logo
  1. Home
  2. / Blog
  3. / Promis Async Await
  4. / Lessons
  5. / 1

Prev

Understanding Asynchronous JavaScript

  • JavaScript is single-threaded, meaning it executes one task at a time.

  • Asynchronous operations allow JavaScript to handle tasks like fetching data from a server, which might take some time, without blocking the execution of other code.

Asynchronous Techniques:

  1. Callbacks
  2. Promises
  3. Async/Await

Prev