let declaration
RU: объявление let
A variable declaration using the `let` keyword that reserves a memory cell, names it, and allows the binding to be reassigned later. Unlike `const`, a `let` variable can be overwritten with a new value after declaration. Scoped to the enclosing block.