Avleen Sandhuavleen.hashnode.dev·Aug 20, 2024Utilizing fetch and .then to Integrate a Public APIWe might not always have the data we need in order to complete our desired projects. For example, suppose we are making a weather app. If you are the average person, it is more than likely that you do not have all the tools and technology needed to c...Discussfetch API
Jihad Noureddinejihad.hashnode.dev·Feb 9, 2024JavaScript Promises Mastery: The Ultimate Guide to Asynchronous Programming Using PromisesIntroduction Asynchronous programming During the coding process, we often encounter situations where certain actions, such as complex calculations or fetching data from external sources like an API, may take a relatively longer time to complete. Wait...Discuss·11 likes·34 readsjs
Twinkaltwinkalp10.hashnode.dev·Aug 4, 2023Promise in JavascriptA promise is an object. It works as a placeholder for a certain period until we receive a value from an asynchronous operation. Promise in Javascript is similar to promise in real life. If we do promise to do something, there will be two results of p...Discuss·29 readspromise
Divy Parekhdivysblog.hashnode.dev·Jul 26, 2023🌟 Unlocking the Power of Promises in JavaScript! 🚀Introduction 🎉 Are you tired of getting lost in a maze of callbacks while handling asynchronous tasks in JavaScript? Fear not! Promises 🌈 are here to save the day! They offer a cleaner and more organized way to manage asynchronous operations, makin...Discuss·1 likeJavaScript