What is the main advantage of using Promises over Callbacks in asynchronous JavaScript?

  • Synchronous Execution
  • Conciseness and Readability
  • Callback hell elimination
  • Procedural Approach
Promises in JavaScript provide a cleaner and more readable way to handle asynchronous code. With promises, you can avoid nested callbacks, making the code more maintainable. Option B is correct as it highlights the conciseness and readability advantages of using Promises over Callbacks.
Add your answer
Loading...

Leave a comment

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