pass-by-value
RU: передача по значению
A calling convention where the argument's value is copied into the callee's stack frame as a parameter. Changes to the parameter inside the function do not affect the caller's variable. The default for primitive types (numbers, booleans) in JavaScript/TypeScript.