AKAnkit kumar Singhinankitsingh2003.hashnode.dev00Map and Set in JavaScript3d ago · 4 min read · Introduction In JavaScript, handling data efficiently is crucial—especially in interviews and real-world applications. While developers often use Objects and Arrays, JavaScript provides two powerful aJoin discussion
AKAnkit kumar Singhinankitsingh2003.hashnode.dev00String Polyfills and Common Interview Methods in JavaScript3d ago · 4 min read · Introduction Strings are one of the most frequently used data types in JavaScript. From handling user input to solving DSA problems, string manipulation is everywhere. In interviews, string questions Join discussion
AKAnkit kumar Singhinankitsingh2003.hashnode.dev00Array Flatten in JavaScript IntroductionApr 14 · 4 min read · The Problem We Face in Real Projects When working with real-world data, things are rarely flat. You might receive data like this: const orders = [ ["item1", "item2"], ["item3", ["item4", "item5"]]Join discussion
AKAnkit kumar Singhinankitsingh2003.hashnode.dev00Template Literals in JavaScriptApr 11 · 3 min read · Introduction Working with strings in JavaScript used to be messy and hard to read.That’s where Template Literals come in — making string handling clean, readable, and powerful. Problems with TraditioJoin discussion
AKAnkit kumar Singhinankitsingh2003.hashnode.dev00The new Keyword in JavaScriptApr 11 · 3 min read · Introduction In JavaScript, the new keyword is used to create objects from constructor functions. It might look simple, but internally it performs multiple steps automatically. Understanding this helpJoin discussion