webdev101.hashnode.devJavaScript Operators: The Basics You Need to KnowIn every programming language, you perform operations on values and variables, and for that, you need operators. Variables are used to store data, and operators are used to manipulate the same data. S20h ago·4 min read
webdev101.hashnode.devUnderstanding JavaScript Promises with Real World ExamplesPerforming asynchronous tasks in JavaScript is a fundamental part of creating interactive web applications. Asynchronous tasks include API calls, file reading, or timers to run in the background, ensu5d ago·5 min read
webdev101.hashnode.devUnderstanding Variables and Data Types in JavaScriptTo learn any programming language, understanding its variables and data types is essential, as these are the fundamental building blocks of any programming language. Variables are like empty boxes whe6d ago·4 min read
webdev101.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionWhen you write CSS, you’re not just writing styles, you’re giving instructions about which elements should receive those styles. That’s exactly where CSS selectors come in. If HTML is the skeleton of a webpage, then CSS selectors are the coordinates ...Jan 30·4 min read
webdev101.hashnode.devEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupWhen you’re new to HTML, writing markup often feels slow and repetitive.To create even a simple layout, you might type: Opening tags Closing tags Indentation Repeated elements like list items or cards This is a very slow and lengthy process for...Jan 30·4 min read