getknowladge.hashnode.devArray Methods You Must KnowArrays are one of the most important parts of JavaScript.Whenever we store multiple values together, we usually use an array. Example: let numbers = [2, 5, 10, 15]; But arrays are not just containers8h ago·4 min read
getknowladge.hashnode.devEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupLet’s start with a feeling every HTML beginner has experienced. Writing HTML Feels Slow at the Beginning You type this: <div class="card"> <h1>Title</h1> <p>Description</p> </div> And you feel: too much typing too many angle brackets same str...Jan 31·4 min read
getknowladge.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionWhy CSS Selectors Are Needed? CSS ka kaam hota hai style dena.Lekin browser ko ek basic problem hoti hai: “Main kis element ko style karun?” Page pe hundreds of elements ho sakte hain.Browser ko batane ke liye selectors use hote hain. So in one line:...Jan 28·4 min read
getknowladge.hashnode.devUnderstanding HTML Tags and ElementsLet’s start with the most basic question: What is HTML and Why Do We Use It? HTML stands for HyperText Markup Language. HTML is used to create the structure of a webpage.It tells the browser: what content exists what is a heading what is a paragra...Jan 28·3 min read
getknowladge.hashnode.devHow a Browser Works: A Beginner-Friendly Guide to Browser Internals.What happens after I type a URL and press Enter? Most people think: “Browser website open kar deta hai.” But in reality, the browser goes through many clear steps, one after another, to convert text and code into pixels on your screen. Once you under...Jan 27·4 min read