Junior
What statuses exist for a promise in JavaScript?
sobes.tech AI
Answer from AI
pending: The initial state, the promise is neither fulfilled nor rejected.fulfilled: The state when the operation has successfully completed, and the promise has a resulting value.rejected: The state when the operation has failed, and the promise has a reason for rejection.