Variables: `let` vs. `const`
Variables are declared using let
for mutable (changeable) values and const
for immutable variables, whose values cannot be reassigned after their initial declaration. It is recommended to use let
and const
over the older var
keyword.