What are the differences between `var` and `let`? Are they necessary?

do you need to? No. Should you? Yes.

the keyword (var or let) indicates the scope of the variable, without var, let or const the variable has a global scope. Which is far from ideal

for readability, the spaces are recommended

21 Likes