tejasxdev.hashnode.devPromise Methods in JSJavaScript Promise class provides four methods which takes iterable (e.g. Array ) of Promise and gives back a Promise in return. Let's dive into these methods with some interesting real-world analogie5d ago·3 min read
tejasxdev.hashnode.devJavaScript Operators: The Basics You Need to KnowThis time, we'll be looking into operators in JavaScript. These are very essential to know because you'll be using them all the time. So let's start with what are operators? Operators Operators are so6d ago·5 min read
tejasxdev.hashnode.devUnderstanding Variables and Data Types in JavaScriptIn this blog we'll be understanding what are variables and data types in JavaScript. Variables Variable is a container that stores value inside it. This variable represents a reserved space / block in6d ago·5 min read
tejasxdev.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionBefore we write any CSS, let’s understand one important thing. Why CSS Selectors Are Needed A webpage is full of HTML elements: Headings Paragraphs Buttons Divs everywhere CSS doesn’t magically know what to style. So we need a way to tell the b...Jan 30·3 min read
tejasxdev.hashnode.devEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupLet’s start with a feeling every beginner knows. Writing HTML Feels Slow at First You want to create something simple: <div> <h1></h1> <p></p> </div> But you end up typing: Angle brackets Closing tags Indentation Repeating the same patterns ...Jan 30·3 min read