AKAyush Kumarinayush001.hashnode.dev00Function Declarations vs Expressions1d ago · 6 min read · Every JavaScript developer reaches a moment where they ask: why write a function one way versus another? The answer is more interesting than you'd think — and Indian cricket is the perfect lens to seeJoin discussion
AKAyush Kumarinayush001.hashnode.dev00JavaScript Arrays 1011d ago · 4 min read · 1. What is an array, and why do we need it? Imagine you want to store the names of your five favorite movies. Here's how you might do it without an array: let movie1 = "Inception"; let movie2 = "InterJoin discussion
AKAyush Kumarinayush001.hashnode.dev00Understanding Operators in JavaScript 1d ago · 5 min read · My second week into learning JavaScript, I realized that almost every piece of code I was writing involved some kind of comparison or calculation. That's where operators come in. Once you understand tJoin discussion
AKAyush Kumarinayush001.hashnode.dev00Understanding this, call(), apply(), and bind()1d ago · 6 min read · In JavaScript, every function has a quiet question burning underneath it: "who's in charge right now?" The answer is this. Get comfortable with it, and a whole class of confusing bugs simply disappearJoin discussion
AKAyush Kumarinayush001.hashnode.dev00Understanding Object-Oriented Programming in JavaScript1d ago · 3 min read · Object-Oriented Programming (OOP) is a way to organize code and make the code more reusable . It is like making a container for an object with all the properties and methods . Classes are created as aJoin discussion