What method is used to specify the code to execute after a Promise is fulfilled?

  • then()
  • catch()
  • resolve()
  • reject()
The then() method is used to specify the code that should be executed after a Promise is fulfilled. It allows you to handle the successful resolution of a Promise and work with the result.
Add your answer
Loading...

Leave a comment

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