VKVivek Kushalinvivekkushal.hashnode.devยทSep 15, 2023 ยท 3 min readWebpack EssentialsLet's unpack what a module bundler is and why we need it. A module bundler intelligently creates a bundle for us, like which module depends on which to create a dependency graph. It can make certain transformations on our modules before adding them t...00
VKVivek Kushalinvivekkushal.hashnode.devยทFeb 12, 2023 ยท 2 min readInequality In EqualityJavaScript is a weakly typed programming language. What does weakly typed mean, you ask? Well ๐ค Weakly typed means that while declaring a variable you don't need to provide its type. JavaScript will figure out that variable's type on the fly. But th...00
VKVivek Kushalinvivekkushal.hashnode.devยทSep 16, 2022 ยท 2 min readJavaScript Window and Document ObjectFirst Things First: The DOM The document is an object model of any HTML web page that is run in a browser application. Individual elements of an HTML page can be accessed through the document object model. Document objects are used to add dynamic con...00
VKVivek Kushalinvivekkushal.hashnode.devยทSep 13, 2022 ยท 2 min readJavaScript Loops: The Full PlatterWhat is a loop? A loop is used to iterate over a block of code repeatedly until the condition inside it is true. If the condition inside is false or becomes false, the loop will be terminated. Every programming language has this feature, the only thi...00
VKVivek Kushalinvivekkushal.hashnode.devยทSep 12, 2022 ยท 2 min readThe Git AgendaWhat is Git? Most developers or beginners might have heard the term Git or GitHub in their learning phase. The git website itself mentions that it is "a free and open source distributed version control system designed to handle everything from small ...00