Bartick Maitihashnode.bartick.me路Nov 10, 2023Understanding JavaScript Concepts: CommonJS vs. ECMAScript ModulesEmbarking on the journey of JavaScript development often confronts us with the dichotomy of require and import statements, heralding the realms of CommonJS (cjs) and ECMAScript Modules (mjs) respectively. In this exploration, we aim to unravel the en...1 like路27 readsJavaScript
Bablu Roybabluroy.hashnode.dev路Oct 1, 2023The Developer's Guide to Understanding JavaScript's Scope ChainIntroduction To become proficient in JavaScript Engineering, it is essential to understand the concept scope chain. The scope chain is a fundamental concept that determines how variables are accessed and resolved within a JavaScript program. In this ...42 readsJavaScript
Olalekan Abdulfatahblog.lekan.dev路Sep 7, 2023JavaScript Enigmas: Cracking ClosuresClosures, Closures, Closures !!!!馃 If you've ever felt puzzled by closures in JavaScript, you're in good company. You could be using closures every day in your code and not even know it! Yep, true story. Believe it or not, I once aced a closure-base...20 likes路68 readsJavaScript
AJIT KUMAR PANDITajitkumarpandit.nakprc.com路Aug 21, 2023JavaScript Hoisting: Elevating Declarations for Code Magic! (explanation of hoisting in JavaScript)Hoisting in JavaScript Hoisting is a behavior in JavaScript where variable and function declarations are moved to the top of their containing scope during the compilation phase, before code execution. This means that even if you declare a variable or...42 readsJavaScript
Keshav Kumarkeshavkr.hashnode.dev路Jul 11, 2023Top Basic Javascript Concepts (Part-1)Variables: Variables are containers for storing data values. There are three types of variables in JavaScript: var, let, and const. let x = 5; // x is 5 const pi = 3.14; // pi is a constant 3.14 Data Types: JavaScript has several data types includ...32 reads2Articles1Week
Sargam Poudelsargam.hashnode.dev路Jun 1, 2023Javascript concepts you tend to forget easilyJavascript is one of the most popular programming languages in 2023. It is because of it's multiple growing use cases and simple syntax. But at times, some concepts are forgotten by most of the developers so this blog tries to address such 6 concepts...JavaScript