August 2017
Beginner
374 pages
10h 41m
English
Note that we just need to ensure that the original reference to the state is not modified. As long as we make a copy first, we can safely mutate the copy. This means that we can do the following:
let copiedState = state.slice()
We can do any operations we want on the copiedState variable.
Read now
Unlock full access