MGMrinal Gintech-log.hashnode.dev00Error Handling in JavaScript: Try, Catch, FinallyMar 26 · 2 min read · Errors in JavaScript occur due to issues or conflicts in the code during execution. These can be syntax errors, runtime errors, or logical mistakes that disrupt the normal flow of the program.If not hJoin discussion
MGMrinal Gintech-log.hashnode.dev00Callbacks in JavaScript: Why They ExistMar 26 · 2 min read · What a Callback Function IsA callback function is a function that is passed as an argument to another function and is executed later. function greet(name, callback) { console.log("Hello " + name); Join discussion
MGMrinal Gintech-log.hashnode.dev00Template Literals in JavaScriptMar 26 · 2 min read · Traditional String ConcatenationTraditional string concatenation can be confusing and verbose, as it requires repeatedly using the + operator. This not only adds extra code but also makes the string hJoin discussion
MGMrinal Gintech-log.hashnode.dev00The new Keyword in JavaScriptMar 26 · 2 min read · The new keyword helps us create objects (instances) using constructor functions or classes. It works with functions and classes to initialize new objects. Under the hood, it also links the created objJoin discussion
MGMrinal Gintech-log.hashnode.dev00Spread vs Rest Operators in JavaScriptMar 26 · 1 min read · Spread & Rest Operator, could seem same in syntax, though little placement makes all the difference. Spread Operatorwe can say that spread operator ...args is used to unwrap the elements from say an aJoin discussion