MKMohit Kumarinimohit1o1.hashnode.dev00Destructuring in JavaScript1d ago · 3 min read · “Stop writing repetitive extraction code” When working with objects and arrays, you often need to pull values out. The traditional way works — but becomes repetitive quickly. The Problem: RepetitiveJoin discussion
MKMohit Kumarinimohit1o1.hashnode.dev00Template Literals in JavaScript2d ago · 2 min read · “Writing strings shouldn’t feel messy” Working with strings is common in JavaScript — especially when you need to combine variables with text. But traditional string concatenation quickly becomes harJoin discussion
MKMohit Kumarinimohit1o1.hashnode.dev00JavaScript Hoisting & Temporal Dead Zone Explained2d ago · 3 min read · “Why does this code behave like this?” console.log(a); var a = 10; Output : undefined vs console.log(b); let b = 10; Output : ReferenceError Same pattern. Different result. Why? JavaScript DoeJoin discussion
MKMohit Kumarinimohit1o1.hashnode.dev00JavaScript String Methods You Must Know2d ago · 3 min read · “Text is everywhere — your job is to control it” From user input to API responses, almost everything in JavaScript involves strings. Names, emails, messages, URLs — all strings. But raw strings are rJoin discussion
MKMohit Kumarinimohit1o1.hashnode.dev00Understanding Objects in JavaScript2d ago · 4 min read · “If variables are containers, objects are structured containers” So far, we’ve seen how JavaScript stores simple values.Javascript variables and data types But real applications don’t deal with isolatJoin discussion