TGTilak Gajjarintilakgajjar.hashnode.dev00String Polyfills and Common Interview Methods in JavaScript14h ago · 9 min read · Strings are everywhere in programming. They hold user input, display messages, store data, and format output. JavaScript provides dozens of built-in methods to manipulate strings, but interviewers oftJoin discussion
TGTilak Gajjarintilakgajjar.hashnode.dev00Understanding the this Keyword in JavaScript15h ago · 5 min read · Imagine you are at a party and someone shouts "Hey you !" Your reaction depends on who is calling out and where you are standing. this works the same way. this in the Global Context When you use this Join discussion
TGTilak Gajjarintilakgajjar.hashnode.dev00Error Handling in JavaScript: Try, Catch, Finally3d ago · 8 min read · What Errors Are in JavaScript Before we talk about handling errors, we need to understand what errors actually are in JavaScript. An error is an object that gets created when something goes wrong durJoin discussion
TGTilak Gajjarintilakgajjar.hashnode.dev00The new Keyword in JavaScript3d ago · 5 min read · JavaScript offers multiple ways to create objects. While object literals work well for one of objects, constructor functions let you create many similar objects efficiently. The new keyword is the mecJoin discussion
TGTilak Gajjarintilakgajjar.hashnode.dev00JavaScript Promises Explained4d ago · 5 min read · Callbacks gave us a way to handle asynchronous operations, but they created their own problems when operations became complex. Promises were introduced to solve these problems while keeping asynchronoJoin discussion