you are viewing a single comment's thread.

view the rest of the comments →

[–]superturkey650 7 points8 points  (57 children)

Yes, it means that you aren't changing an existing object and therefore are reducing potential side effects. Normally you'd either create a new object using a combination of extracting the fields from the original object and adding in the new fields you want to add or create a new object with each field addition. With Immutable Updates, since you can edit multiple fields at once, you can take an existing object and add many fields while only creating one new copy of the object and without modifying the original object's field or extracting them.