How React Virtual DOM works under the HoodReact never touches the Real DOM directly on every state change. Instead, it builds a lightweight JavaScript copy of the DOM (Virtual DOM), compares the new version against the old one (diffing/reconcMay 9, 2026·7 min read
Linux File System HuntingLike many students, I started my journey with Windows. It worked, but it always felt like a black box — things happened behind the scenes, and I had little visibility into how the system actually workApr 22, 2026·5 min read
Understanding Objects in JavaScriptHey there, in this article we learn about the objects in js, why objects are being used, ohw to loop over the objects, different methods to handle the looping on object keys,values and complete singleMar 15, 2026·3 min read
Arrow Functions in JavaScriptHey guys , in this article we learn everything about the arrow function in js, how it is different from the normal function expression. so, let start. What Are Arrow Functions? Arrow functions are a sMar 14, 2026·2 min read
JavaScript OperatorsIn this article we learn about the different types of operators in js, how to use them with different types of operands and how the operators behave differently with different data types. What Are OpeMar 14, 2026·3 min read
Control Flow in JavaScriptIn this article, we learn about the control flow in the programming , why it exists and what are the different ways with which we can handle the control flow of the program. What is Control Flow? ContMar 14, 2026·3 min read
Variables and Data Types in JavaScriptIn this article we learn about the variables and data types in js. Difference keywords like var, let, and const which we can use with any variable declaration. What is a Variable? A variable is like aMar 14, 2026·3 min read