Understanding var, let and const in JavaScript
In this tutorial, we’ll explore the three different ways to declare a variable in JavaScript – var, let and const keywords. The keyword var is available since the beginning of JavaScript. Keywords let and const were added in ES6. We’ll also understand why var is problematic and we should use let or const instead. var …