How does Promise chaining help in handling asynchronous operations?

  • It simplifies callback hell by allowing sequential execution of asynchronous tasks.
  • It increases the complexity of asynchronous code.
  • It only works with synchronous operations.
  • It requires additional external libraries.
Promise chaining is a technique that allows sequential execution of asynchronous tasks, making the code more readable and maintainable by avoiding callback hell.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *