DDivitindivit.hashnode.dev00The new Keyword in JavaScriptApr 8 · 3 min read · What the new keyword does ? In JavaScript, the new keyword is used to create an instance of a user-defined object type or a built-in object that has a constructor function. It transforms a function caJoin discussion
DDivitindivit.hashnode.dev00String Polyfills and Common Interview Methods in JavaScriptApr 8 · 3 min read · What are string methods? String methods are built-in functions that allow us to work with and manipulate text data easily. In most programming languages like JavaScript or Python, strings come with meJoin discussion
DDivitindivit.hashnode.dev00Template Literals in JavaScriptMar 29 · 3 min read · Problems with traditional string concatenation In JavaScript, before ES6, developers mainly used the + operator to combine strings. While this works, it often becomes messy and hard to read, especiallJoin discussion
DDivitindivit.hashnode.dev00Callbacks in JavaScript: Why They ExistMar 29 · 2 min read · What a callback function is ? A callback function is simply a function that is passed into another function as an argument and then executed later. Instead of calling the function immediately, you givJoin discussion
DDivitindivit.hashnode.dev00Synchronous vs Asynchronous JavaScriptMar 28 · 3 min read · What synchronous code means Synchronous code is the simplest way code runs. It executes step by step, in order. One line runs, finishes, and then the next line starts. Nothing moves forward until the Join discussion