The method _________ is used to execute code after a Promise is either fulfilled or rejected.

  • finally()
  • done()
  • complete()
  • finalize()
The correct method is finally(). The finally() method is used to specify a function that will be executed regardless of whether the Promise is fulfilled or rejected. It allows you to perform cleanup or finalization tasks.
Add your answer
Loading...

Leave a comment

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