const declaration
RU: объявление const
A variable declaration using the `const` keyword that seals the binding — the variable cannot be rebound to a different value or reference after initialisation. For primitive values this effectively makes them immutable; for objects it prevents rebinding the name but does not freeze the object's properties.