I'm working on a JS project where I need to override some values in my object which contains nested objects.
I'd normally use the following:
const merged = { ...application, ...customer }
So that any data inside of customer can override the application.
However, in my example, customer is overriding the entire applicant nested object and I just need to override the name within that object?
I've put together a JS fiddle which can be found here, what am I missing?
const customer = {
  applicant: {
    first_name: 'john'
  }
}
const application = {
  applicant: {
    first_name: 'edward',
    age: 50
  },
  income: {
    salary: 500
  }
}
const merged = { ...application, ...customer }
console.log(merged)In merged I expect the first_name to be "John" whilst everything else remains in tact.
 
     
     
    