Mutability
- is the property of a variable being reassignable
- an immutable variable thus means “a value you cannot reassign”.
- An example of this is the difference between declaring variables using
let
andconst
in Javascript
let
and const
in Javascript