mariyasada.hashnode.devHow to integrate Redux saga with redux toolkitWhen creating a React application, the question of which state management approach to employ naturally arises. If your state is complex or includes a substantial number of entities, opting for Redux is advisable. However, if your state is relatively ...Nov 28, 2023·10 min read
mariyasada.hashnode.devHoisting And Temporal Dead ZoneHoisting and temporal dead zone are two important terms in javascript but many people are confused about how they work. So don’t worry we are going to discuss everything about hoisting and TDZ in this blog. So, grab your coffee and snacks, and let’s ...May 17, 2022·3 min read
mariyasada.hashnode.devDifferent methods of promisesIn this blog, you will learn about different methods javascript promises. Before starting the discussion about any method let’s discuss promises a little bit. What are promises? A promise is an object that encloses the result of an asynchronous oper...May 12, 2022·4 min read
mariyasada.hashnode.devVirtual DOM, Diffing, and ReconciliationReact is a javascript library. It helps developers to build user interfaces by using the JSX. React is most famous for building user interfaces compared to others because react is fast. How React is so fast? The answer lies in the diffing algorithm....May 11, 2022·4 min read
mariyasada.hashnode.devXMLHttpRequest VS FetchI always struggle with these two words. How XHP is different than fetch and why fetch are more popular. What is the advantage and disadvantages of using fetch? so finding the solution of all these together. Before we started, we have already known ab...Feb 8, 2022·3 min read