riteshv.hashnode.devUnderstanding Variables and Data Types in JavaScriptWhen you write JavaScript code, you’re basically working with information. Names, numbers, yes/no values, all of this data needs a place to live. That’s where variables come in. If JavaScript were a r4d ago·4 min read
riteshv.hashnode.devJavaScript Operators: The Basics You Need to KnowWhen you start learning JavaScript, one of the first things you’ll notice is how often operators show up. Adding numbers, comparing values, or checking conditions — all of this happens using operators4d ago·5 min read
riteshv.hashnode.devHow a Browser Works: A Beginner-Friendly Guide to Browser InternalsTo most, a browser is just a window to the internet a utility to check email or watch videos. But beneath the surface of the "back" button and the address bar lies one of the most sophisticated pieces of engineering in modern software. A web browser ...Jan 30·4 min read
riteshv.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionIf HTML is the skeleton of a website, CSS is the wardrobe. But before you can put a shirt on a skeleton, you have to point to the right one. In CSS, selectors are the tools we use to point. Without them, your styling instructions would just be floati...Jan 30·3 min read
riteshv.hashnode.devEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupWhen you start writing HTML, everything feels slow and repetitive. For example, writing this by hand: <div class="card"> <h1>harshal</h1> <p>chauhan</p> </div> means typing: Opening tags Closing tags Proper nesting Quotes, brackets, indentat...Jan 30·3 min read