let, const, and var
the use case of let, const and var; avoiding errors, such as the temporal dead zone, and using a linter
We'll cover the following...
Rule 1: use
let
for variables, andconst
for constants whenever possible. Usevar
...