## Notes The types depend on the state of the promise: - Pending: this is the initial state. In progress and not yet completed - Fulfilled: Successful completion - Rejected: Failed completion; handled by `.catch` method ## References - [Types of Promises - Dev.to](https://dev.to/bhataasim/types-of-promises-in-javascript-4n19) - [[JavaScript Study MOC]]