Things you should know about Objects and Immutability in JavaScript

Immutability is the art of maintaining the state of an object, an update should not change the object, but create a new object with the updated data. Read more

Similar