Promise and its Different Promise Methods (Promise.all, Promise.race, etc.)
Promises in Javascript
A promise is an object which can be returned synchronously from an asynchronous function. It will be in one of 3 possible states:
Fulfilled: onFulfilled() will be called (e.g., resolve() was called)
Rejected: onRejected() will...
t007rushi.hashnode.dev4 min read
Vijay Tembugade
Software Engineer
Great work, rushikesh.