Aug 20, 2024 路 4 min read 路 We 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...
Join discussion
Feb 9, 2024 路 11 min read 路 Introduction 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...
KKhaled commented
Aug 4, 2023 路 2 min read 路 A 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...
Join discussion
Jul 26, 2023 路 3 min read 路 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...
Join discussion