Understanding Javascript var, let and const
Aug 19, 2024 · 4 min read · Upon the release of ES2015 (ES6), two new ways of variable declaration were introduced to javascript. The two new keywords introduced were, let and const. Earlier the var keyword was only used to declared variables. In this article we dive deeper and...
Join discussion