1d ago · 3 min read · The Bug That Started It All I was working with DOM elements, and I wanted to fetch all the li items from the list. I used querySelectorAll(), which returned a NodeList of length 3, and then I appended
Join discussion
Feb 18 · 3 min read · useRef Deep Dive — DOM Access + Persistent Values Explained Many developers think: useRef is only for accessing DOM. That’s only 50% truth. Today we’ll understand the real power of useRef. 🤔 What is useRef? useRef is a React hook that lets you s...
Join discussion
Feb 15 · 12 min read · Have you ever wondered what actually happens when you type a URL in your browser and press Enter? Like, really happens? Most of us use browsers every single day, but we rarely stop to think about the incredible amount of work happening behind the sce...
Join discussion
Dec 19, 2025 · 5 min read · Why React Exists? React exists because early web applications —specifically Facebook—reached a level of complexity that traditional web development tools could no longer handle efficiently. Before React, if you wanted to change a single piece of data...
Join discussion
Oct 20, 2025 · 2 min read · When I started learning JavaScript, the term DOM used to confuse me. Everyone said, “You can use the DOM to change HTML with JavaScript,”but no one really explained what it was. After a bit of exploring, it finally clicked and once it did, JavaScri...
Join discussion
Sep 29, 2025 · 3 min read · flash Bitcoin refers to a cryptocurrency sent to your wallet but doesn’t stay there for a long time, depending on the software used to flash the coin. Flash bitcoin has no difference with real bitcoin itself, except for the fact that it does not last...
Join discussion
Aug 30, 2025 · 4 min read · TL;DR The DOM is a tree of nodes representing your HTML. You can select nodes with querySelector, modify content with textContent/innerHTML, style them with style/classList, and create/remove nodes with createElement, append, remove. Bonus: before...
Join discussion
Aug 13, 2025 · 19 min read · Advanced DOM Manipulation DOM Manipulation is an important topic worth learning in Web development, this is because it is one of JavaScript’s main uses to make web pages interactive. This article will cover topics like how to traverse the DOM and w...
AAnn commented