Differences of variable declarations in javascript
Variable declaration ways: Along with the developer of javascript each year, the variable declaration has also made new improvements. var : the traditional variable declaration. let : the variable declaration from ES5. const : the variable declaration from ES5, immutable value. No keyword declaration. Difference between var and let: Declaring variables with var is a fairly arbitrary ...