Js Event loop questions!!In a recent interview, my friend was asked an interesting question — and I got it wrong too at first. The trick was that async has higher priority than setTimeout. I later realized why: async returns a Promise, and Promises are handled in the microta...Nov 17, 2025·109 min read
Chapter 7- React - ReduxWe started React with the issue of real-time updates — if a variable is changing, then I want to render it in the UI instantly. Then we went to props, but there came our first stepping stone: prop drilling. Solving that, we came across Context, and i...Jun 30, 2025·56 min read
Fetching data in react- APIYou might design the website beyond imagination, adding animations and awesome motion designs. Not only that, you can add logic too. However, this won't be enough for even a simple task because connecting to a database is essential. So, let's underst...Apr 28, 2025·29 min read
Chapter - 5 Lets get HookedIn this blog, we will learn a lot—literally a lot. Most of the React hooks are in one place! This is something I wanted from the day I started learning React, so now I've built one. Here, we will learn: Basic Hooks useState – Manages state within a ...Apr 11, 2025·98 min read
Chapter 4 - Listing, Stylings and FormsIn this blog, we are going to learn a lot, starting with styling, then how to render lists, and finally, form handling. In the end, we will make a small to-do application. Let's start... Understanding logic makes you a great developer, but if you can...Apr 7, 2025·33 min read
React Life Cycle and StateAfter learning what React is and how it works behind the scenes, in this blog, we will explore React's lifecycle and states. So lets began… What are Components? In React, a component is an independent and reusable piece of UI. Components allow us t...Mar 14, 2025·53 min read
Sorting All the way to DSASorting means arranging a given array or list of elements based on a comparison operator. This operator helps determine the new order of the elements in the data structure. For example, you may need to sort the array in descending or ascending order,...Mar 9, 2025·38 min read