PKPawan Kushwahinannodiya.hashnode.dev00Callbacks in JavaScript: Why They ExistMar 25 · 3 min read · We recently looked at how the new keyword constructs objects. Today, we’re going back to the absolute foundation of asynchronous JavaScript: Callback Functions. Before we had the "cheat codes" like PrJoin discussion
PKPawan Kushwahinannodiya.hashnode.dev00The new Keyword in JavaScriptMar 25 · 3 min read · In our last post, we went "under the hood" to write String polyfills. Today, we’re looking at another core piece of JavaScript magic: the new keyword. You’ve probably seen code like const date = new DJoin discussion
PKPawan Kushwahinannodiya.hashnode.dev00String Polyfills and Common Interview Methods in JavaScriptMar 25 · 3 min read · In our journey through modern JavaScript—from this and Map/Set to Async/Await and Spread—we've used a lot of built-in power. But in a high-level technical interview, the interviewer might stop you andJoin discussion
PKPawan Kushwahinannodiya.hashnode.dev00Spread vs Rest Operators in JavaScriptMar 25 · 4 min read · Have you ever seen ... in JavaScript and wondered if the developer just forgot to finish their sentence? Those three dots are actually one of the most powerful features in modern JS. 1. The Spread OpeJoin discussion
PKPawan Kushwahinannodiya.hashnode.dev00Error Handling: How to Crash GracefullyMar 25 · 3 min read · We’ve spent the last few posts learning how to write complex, asynchronous code. But let’s be real: Code breaks. Whether it's a network timeout, a typo, or a user entering "abc" into a "price" field, Join discussion