2. JavaScript Promise Simple Implementation
2.1 Key Concepts of Promise
Three States:
pending (in progress)
fulfilled (successfully completed)
rejected (failed)
Irreversible State Transition: Once a promise changes from pending to fulfilled or rejected, it cannot change again.
The the...
web-zhang91.hashnode.dev3 min read