RKRajesh Kumarinrajesh71webdev.hashnode.dev00Destructuring in JavaScript 1d ago · 5 min read · Imagine you just received a care package in the mail. Inside the box, there are three things: a book, a t-shirt, and some chocolates. If you want to read the book, you don't carry the entire cardboardJoin discussion
SAShahbaz Ahmedindebunking-js.hashnode.dev00Spread vs Rest Operators in JavaScript3d ago · 6 min read · What are Spread (...) Operators? The spread (...) syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for arrJoin discussion
DSDipali Sharmainsharmadipali14.hashnode.dev10What is a ReactMar 27 · 13 min read · Introduction React is a JavaScript framework used for building user interfaces (UIs). React was developed by Jordan Walke, a software engineer at Facebook (now Meta), to solve a very specific problem,Join discussion
NKNAWAZISH KHANinnawazish.hashnode.dev20Destructuring in JavaScript: Extract Values Without the MessMar 26 · 7 min read · Every JavaScript developer has written something like this: const user = { name: "Nawazish", age: 21, role: "Developer" }; const name = user.name; const age = user.age; const role = user.role; It woJoin discussion
TSTamal Sarkarindt89.hashnode.dev00JavaScript Promises Explained for BeginnersMar 26 · 3 min read · Introduction JavaScript is asynchronous by nature. That means some tasks take time like fetching data from an API or reading a file and JavaScript doesn’t wait around for them to finish. Before PromisJoin discussion
TKTushar Kumar Rajintushar-raj.hashnode.dev00React: Library or Framework? Understanding Library vs FrameworkMar 24 · 5 min read · When we start learning React, one question almost always comes up: Is React a library or a framework? You might have heard both answers from different people, which makes it even more confusing. But bJoin discussion
NSNinad Shirsatinninadshirsat.hashnode.dev00Understanding Variables and Data Types in JavaScript Mar 24 · 5 min read · 🧠 Introduction When we write programs, we need a way to store information and use it later. Think of a variable like a box 📦: You put something inside it You give it a name You can use it anytime laJoin discussion
AAAarav Ahujainhtml-blogs-aarav.hashnode.dev00Emmet for HTML: A Beginner’s Guide to Writing Faster MarkupMar 22 · 3 min read · What Emmet is (in very simple terms) Emmet is basically "autocorrect on steroids" for writing HTML. Instead of typing out every single bracket, tag, and quote mark, you type a short code—like a cheat Join discussion
AAAarav Ahujainhtml-blogs-aarav.hashnode.dev00Understanding HTML Tags and ElementsMar 22 · 3 min read · What HTML is and why we use it HTML (HyperText Markup Language) is the skeleton of the internet. Just like a building needs steel beams to hold it up before you can paint the walls, a website needs HTJoin discussion
NKNAWAZISH KHANinnawazish.hashnode.dev00Error Handling in JavaScript: Try, Catch, FinallyMar 21 · 9 min read · You're building a project. Everything looks fine in development. You ship it. Then a user tries to load their profile on a slow connection, the API call fails, and your entire page goes blank. No erroJoin discussion