PKPranay Kumarinpranaykumar.hashnode.dev00Array Methods You Must KnowMar 11 · 7 min read · Let’s talk about the most useful array methods in JavaScript — the ones you’ll actually use almost every day once you start building real things: push/pop, shift/unshift, map, filter, reduce, and forEJoin discussion
PKPranay Kumarinpranaykumar.hashnode.dev00Control Flow in JavaScript: If, Else, and Switch ExplainedMar 9 · 6 min read · This is one of those things that feels basic once you get it, but when you're starting, it's like "how does the code know what to do next?" So let's start there. 1. What does control flow mean in progJoin discussion
PKPranay Kumarinpranaykumar.hashnode.dev00Arrow Functions in JavaScript: A Simpler Way to Write FunctionsMar 9 · 5 min read · I remember when I first saw arrow functions I thought “why do we need another way to write functions?” But after using them for a while, going back to normal functions feels like writing too much unneJoin discussion
PKPranay Kumarinpranaykumar.hashnode.dev00Understanding Variables and Data Types in JavaScriptMar 9 · 6 min read · 1. What are variables and why do we even need them? Think of a variable as a named box where you can store something for later. Real-life example:You go to the mess for lunch.The cook asks “What do yoJoin discussion
PKPranay Kumarinpranaykumar.hashnode.dev00Understanding Object-Oriented Programming in JavaScriptMar 8 · 6 min read · I'm going to explain OOP the way I wish someone had explained it to me when I was confused – with simple words, real-life examples from everyday Indian life, small code snippets you can copy-paste intJoin discussion