In the previous article, we reviewed our understanding of the Nodejs event loop. We understood how Nodejs uses multiple…
That’s right! Promise is all about waiting for feedback.
Each time a request to get the list of movies is triggered, toggle the application state to loading and fetch the list of movies from server asynchronously. Once the request is…
Asynchronous code can be confusing sometimes. Most people understand a callback: “Call me when you…