NNNavaneetha Navainblog.navaneetha.in01How I Write Better Vue.js Code in Real-Time Projects1h ago · 4 min read · Have you ever built a Vue.js application that worked perfectly but felt difficult to maintain later? Have you faced situations where components became too large, state became confusing, or small changRRoopan commented
RRichainrichak.hashnode.dev00Redux Toolkit in 2025 — Why Old Redux Hurt and How RTK Fixed It5h ago · 9 min read · Hey everyone, Richa here! 👋 Day 8. Story time. I'm a junior dev on my first React project. The tech lead says "we use Redux." I open the codebase and there are folders called actions, reducers, acJoin discussion
DSDipali Sharmainsharmadipali14.hashnode.dev00The new Keyword in JavaScript8h ago · 6 min read · Introduction When you first learn JavaScript, objects feel easy, right? But behind the scenes, one tiny keyword I mean new performs a powerful multi step process. In JavaScript, the new keyword is theJoin discussion
GNGaurang Nagarinblogs.gaurangpods.com00JavaScript Promises Explained for Beginners5h ago · 5 min read · Let’s start from the very first thing that is important here which is what problem promises are actually solving. In JavaScript, we know that it is single threaded. That means it runs one thing at a tJoin discussion
AKAshaaf Khaninashaaf.hashnode.dev00JavaScript Modules: Import and Export4h ago · 4 min read · Imagine you are building a massive library. Early on, you might just throw every book into one giant pile in the middle of the room. At first, it’s easy to find the only three books you own. But as thJoin discussion
DMDnyaneshwar Moreindnano.hashnode.dev00Template Literals in JavaScript7h ago · 3 min read · If you've ever spent time looking for a missing + sign or a stray single quote in your JavaScript code, you've faced "Concatenation Chaos." Developers used to depend on traditional string concatenatioJoin discussion
PJPrakash Jangidinjs-blogs.hashnode.dev00Async Code in Node.js: Callbacks and Promises4h ago · 5 min read · Introduction If you’ve worked with JavaScript, you’ve likely heard of synchronous and asynchronous code but what do these terms actually mean? Synchronous code executes sequentially, line by line. EacJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00String Polyfills and Common Interview Methods in JavaScript3h ago · 5 min read · I used to think string methods were just things you use. trim() split() includes() Call them. Get the result. Move on. That was pretty much my relationship with strings. Then I started preparing for iJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00Map and Set in JavaScript4h ago · 6 min read · I’ll be honest — when I first heard Map and Set, I ignored them. I thought: I already have objects. I already have arrays. Why do I need new things? It felt like JavaScript was adding extra features fJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00The new Keyword in JavaScript6h ago · 6 min read · When I first saw the new keyword, I thought it was doing something magical. let user = new User("Sahil"); I understood that it created an object. But what was new actually doing? What happens behind Join discussion