declaration (variable)
RU: объявление (переменной)
The statement that reserves a memory cell and establishes the name-to-address binding for a variable. In JavaScript/TypeScript: 'let x = v' or 'const x = v'. The runtime allocates a cell, records the binding name→address, and writes the initial value v into the cell.