How can i modify value inside object?
For example from this object that contain total of days
const data = {
"A": [{
id: 1,
day: 12
},{
id: 2,
day: 14
}]
}
And add 1 day to day object to become something like this
const data = {
"A": [{
id: 1,
day: 13
},{
id: 2,
day: 15
}]
}