What does immutable mean?

It means that once you instantiate the object, you can’t change its properties. In your first alert you aren’t changing foo. You’re creating a new string. This is why in your second alert it will show “foo” instead of oo.

Does it mean, when calling methods on
a string, it will return the modified
string, but it won’t change the
initial string?

Yes. Nothing can change the string once it is created. Now this doesn’t mean that you can’t assign a new string object to the str variable. You just can’t change the current object that str references.

If the string was mutable, does that
mean the 2nd alert() would return oo
as well?

Technically, no, because the substring method returns a new string. Making an object mutable, wouldn’t change the method. Making it mutable means that technically, you could make it so that substring would change the original string instead of creating a new one.

Leave a Comment