Immutable vs Mutable (Non-Immutable)

Immutable

An immutable value cannot be changed after it is created.

When you modify it, JavaScript creates a new value instead of changing the original one.

Example