Mutability
Mutable means that a memory location can be reassigned new values.
Related concepts: ValueAssignmentVariable
Closest Wikipedia entry: Immutable object — In object-oriented (OO) and functional programming, an immutable object (unchangeable object) is an object whose state cannot be modified after it is created. This is in contrast to a mutable object (changeable object), which can be modified after it is created. In some cases, an object is considered immutable even if some internally used attributes change, but the object's state appears unchanging from an external point of view.
Misconceptions about Mutability7 documented Misconceptions
Check YourselfConstReferenceImpliesImmutability — JavaScript
An object referred to by a const variable is an immutable objectFinalReferenceImpliesImmutability — Java
An object referred to by a final variable is an immutable objectImmutableRequiresFinalParameters — Java
Immutable classes need final constructor/method parametersPrivateFieldsImplyImmutability — Java
A class where all fields are private is immutablePrivateMeansFinal — Java
A private field cannot be changedThisAssignable — Java
One can assign to thisThisAssignable — JavaScript
One can assign to this