Assume I have an object like this
let store = {
"articles": [{...}, {...}, ...],
"errors": { "p1": { "myNewObject":0 }, "p2": {...}, ...}
}
I want to take advantage of Spread syntax to return a clone of this object where store.errors.p1
is a new object. Is the following the simplest way?
let newStore = { ...store, ...{ errors: { ...store.errors, p1: { "myNewObject":1 } } } }
No it is not the simplest syntax to clone your store and do a deep copy of
p1
, but it's very close:You can remove the extra spread and brackets around
errors
.