Promises
Promise is an object representing the eventual completion of an asynchronous operation.
It has three state Pending, Resolved and Rejected
Pending is the default state
Resolved when the promise is success
Rejected when the promise fails
Its respo...
promise-in-js.hashnode.dev3 min read