scope
RU: область видимости
The region of source code in which a name (variable, parameter, function) is visible and usable. In TypeScript and C-family languages, scope is determined by curly braces: a name declared inside a block is scoped to that block and invisible outside it.