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.
Loading...
Related Quiz
- Using await inside a __________ loop can cause asynchronous operations to run sequentially.
- What is a practical use case of currying in JavaScript?
- The __________ is a JavaScript runtime feature that constantly checks if the call stack is empty to run queued callbacks.
- To convert a Set into an array, use the spread operator like this: [..._________].
- In a for...of loop, the _________ method of an iterable object is called to retrieve values.