NFNausheen Faiyazincodexninja.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScript6h ago · 7 min read · If you’ve been learning JavaScript for a while, you’ve probably seen the keyword this and thought: Wait… what exactly is this pointing to here? And then later you discover call(), apply(), and bind(Join discussion
SMSoumodipto Mandalinsoumo-18.hashnode.dev00JavaScript Arrays 101 3h ago · 3 min read · Imagine you are putting together a watchlist for your weekend binge. If you wanted to store these titles in JavaScript using what we know so far, you would have to create a separate variable for everyJoin discussion
MZMd Zulqarnaininjs-mastery-101.hashnode.dev00Understanding Object-Oriented Programming in JavaScript5h ago · 4 min read · The Blueprint and the Building — What is OOP? 🏗️ Imagine you are a world-class Architect. You want to build a new type of modern house. You don’t just start laying bricks randomly. First, you create Join discussion
DRDev Rahulindevrahulll.hashnode.dev00Control Flow in JavaScript: If, Else and Switch Explained7h ago · 4 min read · What control flow means in programming Control flow means the order in which the program executes instructions. Normally, JavaScript runs code line by line from top to bottom. But sometimes we want thJoin discussion
SMSoumodipto Mandalinsoumo-18.hashnode.dev00Array Methods You Must Know2h ago · 3 min read · push() and pop() These methods allows to easily add or remove elements from the end of an array // Initial Array let watchlist = ["John Wick", "The Boys"]; console.log("Before push:", watchlist); // [Join discussion
SMSoumodipto Mandalinsoumo-18.hashnode.dev00Control Flow in JavaScript: If, Else, and Switch Explained3h ago · 4 min read · Control flow refers to the order in which statements within a program execute and it's mean to control the flow of order in which individual statements, instruction, function calls are executed or evJoin discussion
SMSoumodipto Mandalinsoumo-18.hashnode.dev00JavaScript Operators: The Basics You Need to Know 5h ago · 4 min read · What are Operators ? An operator is a special symbol used to perform actions on variables and values. They are the fundamental building blocks for creating expressions and manipulating data whether thJoin discussion
ATAkhil Tiwariinblogs-akhil-dev.hashnode.dev00Arrow Functions in JavaScript: A Simpler Way to Write Functions 5h ago · 4 min read · When you start writing more JavaScript, you’ll notice that many developers prefer arrow functions instead of traditional functions.Why? Because arrow functions make code shorter, cleaner, and easier tJoin discussion
MKMohit Kumarinmohitcodes-write.hashnode.dev00Difference between NodeList or HTMLCollection5h ago · 9 min read · Introduction about NodeList: NodeList objects are collections of nodes, usually returned by properties such as Node.childNodes and methods such as document.querySelectorAll(). This interface was an atJoin discussion
DRDev Rahulindevrahulll.hashnode.dev00JavaScript Arrays 1016h ago · 3 min read · What arrays are and why we need them An array is a collection of multiple values stored in a single variable. Think of like an array is a list. For example: a list of fruits Apple Banana Orange InstJoin discussion