assignment
RU: присваивание
The operation that writes a new value into the memory cell bound to a variable. In TypeScript/JavaScript, written as 'x = expr': the runtime evaluates 'expr', then stores the result in the cell whose address is bound to the name 'x'. The previous value is overwritten.