What is the initial state of a JavaScript Promise when it is created?

  • Pending
  • Resolved
  • Rejected
  • Settled
When a Promise is created, it starts in the "Pending" state. This means that the Promise is neither fulfilled nor rejected. It's essentially in a pending state until the asynchronous operation it represents is completed.
Add your answer
Loading...

Leave a comment

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