A mutable object can be changed after it's created, and an immutable object can't.
In Javascript, everything (except for strings) is mutable by default:
Freezing an object makes it immutable, though:
Strings can be mutable or immutable depending on the language.
Strings are immutable in Javascript:
But in some other languages, like Swift, strings can be mutable:
Mutable objects are nice because you can make changes in-place, without allocating a new object. But be careful—whenever you make an in-place change to an object, all references to that object will now reflect the change.
Interview coming up?
Get the free 7-day email crash course. You'll learn how to think algorithmically, so you can break down tricky coding interview questions.
No prior computer science training necessary—we'll get you up to speed quickly, skipping all the overly academic stuff.
No spam. One-click unsubscribe whenever.
You're in! Head over to your email inbox right now to read day one!