Your query for articles tagged “immutability” yielded some results!
Variables declared using
const
are not immutableUsing
const
only means that the variable will always have a reference to the same object or primitive value, because that reference can’t change.2m 5Keeping Your npm Dependencies Immutable
I’ve been bitten a few times by dependencies using semver ranges such as
^1.0.1
where the dependency introduced a “non-breaking” change that ended …7m 5