Shallow copy
A shallow copy means that certain (sub-)values are still connected to the original variable.
Spread Operator ...
- The
spread operator
is a new addition to the features available in the JavaScriptES6
version - The spread operator
...
is used to expand or spread aniterable
or anarray
for...loop
Array.map()
- The
map()
method in JS creates an array by calling a specific function on each element present in the parent array. It is a non-mutating method. - Generally,
map()
method is used to iterate over an array and call a function on every element of the array.
Array.filter()
This function returns an array, just like map, but it’s not guaranteed to be the same length.
The input array length was 3, but the resulting length is 1.
If your filter's predicate always returns true, however, you get a duplicate!
Every element passes the test, so it gets returned.
Array.reduce()
- I almost feel bad using reduce to clone an array, because it’s so much more powerful than that. But here we go…
Array.slice()
- slice returns a shallow copy of an array based on the provided start/end index you provide.
Array.concat()
concat
combines arrays with values or other arrays- If you give nothing or an empty array, a shallow copy’s returned
Array.from()
This can turn any iterable object into an array. Giving an array returns a shallow copy.
Deep copy
A deep copy means that all of the values of the new variable are copied and disconnected from the original variable
JSON.parse()
and JSON.stringify()
JSON.stringify()
turns an object into a string.JSON.parse()
turns a string into an object.Combining them can turn an object into a string, and then reverse the process to create a brand new data structure.