anshumanmahato.meInside JavaScript Runtime EnvironmentHey there! Welcome to another article in this series where we discuss the core fundamental concepts of this awesome yet messy language, JavaScript. In the previous article, we discussed how JavaScript executes code. We learned about the JavaScript En...Jul 30, 2025·10 min read
anshumanmahato.meUnderstanding JavaScript Execution with some PizzaWelcome back, fellow developers! I'm excited to have you here for the next part of our JavaScript deep-dive series. The previous article explored the fundamental concepts and core features that make JavaScript a powerful language. Don't worry if you ...Mar 2, 2025·9 min read
anshumanmahato.meJavaScript Fundamentals You Should KnowToday, JavaScript is everywhere. Whether scrolling through your favourite social media feed, ordering takeout, or streaming music, JavaScript is quietly powering that smooth experience behind the scenes. If you are a Web Developer, you definitely use...Feb 9, 2025·7 min read
anshumanmahato.meMastering React Context: Simplifying State Management and Prop DrillingMany times, in react, state information is used by multiple components. Information in React is usually shared using props. We use it for this purpose as well. To resolve such situations, we define that data/function at a common parent component and ...Jul 4, 2024·6 min read
anshumanmahato.meFor intricate state handling, try out the useReducer() HookSo, lately, I have been working on a form component. It was a registration form that had quite a few fields in it. The state management for this was not complex, but it was repetitive. Creating a state for each input field and updating it whenever th...Jul 4, 2024·5 min read