How ImmutableJS works
In this lesson, we'll take a quick look at the internals of ImmutableJS so that we have a better understanding of how can we apply Immutable.js to our Redux app in a performant manner.
We'll cover the following...
Immutable data structures can’t be changed. So when we convert a regular JavaScript object with fromJS
what ImmutableJS does is loop over every single property and value in the object (including nested objects and ...