Unlike callbacks, Promises support _______ chaining, which helps in writing cleaner code.

  • callback
  • asynchronous
  • promise
  • then
The correct option is 'then.' Promises support 'then' chaining, allowing you to chain multiple asynchronous operations in a more readable and maintainable way. This is a significant improvement over callbacks, leading to cleaner and more structured code.
Add your answer
Loading...

Leave a comment

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