I have a structure like the following:
skillet.person = { name: { first: \'\', last: \'\' }, age: { current: \'\' }, birthday: { day:
Using ES7+ syntax and a functional approach:
const new_obj = { ...obj, name: { first: 'blah', last: 'ha'} }