JDJyoti Dwivediinjs-learn-fun.hashnode.dev00Spread vs Rest Operators in JavaScript9h ago · 13 min read · The Pizza Party Paradox 🍕 Last Friday, my team ordered pizza for a hackathon. We had a problem: The Situation: 5 different pizza boxes 1 giant serving table Everyone wanted to grab slices from allJoin discussion
MKMohd Kaifinmohdkaif.hashnode.dev00JavaScript Destructuring Explained16h ago · 12 min read · Ever noticed how some JavaScript code just feels exhausting to read? You're scanning through a function and you see this: const name = user.name; const age = user.age; const email = user.email; const Join discussion
MKMohd Kaifinmohdkaif.hashnode.dev00Mastering Spread and Rest Operators in JavaScript12h ago · 13 min read · Most people don't realize they've been using two completely different operators — written the exact same way. You've typed ... dozens of times. Maybe in a function parameter, maybe while copying an arJoin discussion
MKMohd Kaifinmohdkaif.hashnode.dev00JavaScript Template Literals20h ago · 13 min read · Ever noticed how a single line of JavaScript string concatenation can turn into a puzzle no one wants to solve? You're staring at a line like this: const msg = "Hello " + user.name + ", you have " + cJoin discussion
MKMohd Kaifinmohdkaif.hashnode.dev00JavaScript new Keyword: Under the Hood1d ago · 12 min read · Most developers type new dozens of times a week without thinking twice. You write new Promise(), new Map(), new Person() — and it just works. Until one day it doesn't, and you're left staring at undefJoin discussion
MKMohd Kaifinmohdkaif.hashnode.dev00`this` in JavaScript: The Complete Guide1d ago · 12 min read · You know that feeling when your code looks completely fine — but it still breaks? You wrote the function. You put it inside the object. You called it. And somehow, this.name comes back undefined, and Join discussion
MKMohd Kaifinmohdkaif.hashnode.dev00OOP in JavaScript: A Beginner's Guide1d ago · 12 min read · Have you ever looked at your own code a few weeks later and thought — "Who wrote this mess?" You scroll through hundreds of lines of loosely connected variables and functions, trying to trace where soJoin discussion
MKMohd Kaifinmohdkaif.hashnode.dev00JavaScript's this Keyword Explained1d ago · 11 min read · I used to think this in JavaScript was broken. Not "tricky." Not "nuanced." Broken. Like the language designers had a meeting, decided to make one keyword mean six different things depending on the weJoin discussion
MKMohd Kaifinmohdkaif.hashnode.dev00JavaScript Objects: A Complete Guide2d ago · 12 min read · You know that feeling when your code is working, but you can feel it slowly getting out of control? You've declared userName, then userAge, then userCity. Then your instructor mentions "now add their Join discussion
LDLeonardo Danieliinleonardodanieli.hashnode.dev00Creating Your First GoLang Module: A Beginner's Guide2d ago · 9 min read · Introduction to GoLang Modules Go is a modern programming language created at Google in 2007, widely adopted by major tech companies thanks to its speed, simplicity, and reliability. As a compiled, coJoin discussion