> When something does potentially change, I use let
I don't understand. A `let` binding cannot change; that's what distinguishes it from `var`. The difference between `let` and `const` is that the latter is evaluated at compile time.
> When something does potentially change, I use let
I don't understand. A `let` binding cannot change; that's what distinguishes it from `var`. The difference between `let` and `const` is that the latter is evaluated at compile time.