SVShivam Vermaintimblarc.hashnode.dev00Callbacks in JavaScript: Why They ExistApr 13 · 5 min read · What a callback function is In JavaScript, functions are called as "first-class-citizens", meaning they can be treated like any other variable(value); it could an assigning a name or move it around anJoin discussion
SVShivam Vermaintimblarc.hashnode.dev00Template Literals in JavaScriptApr 12 · 3 min read · Template literals or sometimes informally called as string templates were introduced in ES6 Module. Despite the fact that in JavaScript, a classic old method was used earlier for concatenating two or Join discussion
SVShivam Vermaintimblarc.hashnode.dev00JavaScript Modules: Import and Export ExplainedApr 12 · 5 min read · Why modules are needed Before ES6 (ECMAScript 2015), JavaScript did not have a native way to split code across multiple files. All variables were dumped into the global scope, which often caused problJoin discussion
SVShivam Vermaintimblarc.hashnode.dev00Browser Events in JavaScriptApr 1 · 5 min read · Introduction to browser events What is a browser event? From hovering mouse on window and clicking a button, these all comes under browser events. More examples are: scrolling, keyboard events(clickinJoin discussion
SVShivam Vermaintimblarc.hashnode.dev00Understanding the this Keyword Mar 16 · 3 min read · What this represents The this keyword in JavaScript is a reference to an object, and its value is determined by the context in which a function is executed, not where it is defined. It's value is deteJoin discussion