appendto.com
When to use ES5 Var vs. ES6 Let
1
There is an important distinction to be made between let and var. Both of these statements allow the developer to declare a variable. Let was introduced in Javascript ES6. Before we explore the merits of using let over var, it’s helpful to know the func... Read full article