immutable
RU: неизменяемый
A value or object whose state cannot be changed after creation. Immutable data eliminates a class of concurrency bugs because shared state needs no synchronization when no mutation is possible. Strings in JavaScript and Java are immutable; Records in Java and frozen objects in JavaScript provide structural immutability.