I want to append an object of objects to another object of objects like so:
object1: { item1: {}, item2: {} } to object2: { item3: {}, item4: {} } So that the outcome is this:
object1: { item1: {}, item2: {}, item3: {}, item4: {} } I need to do this in javascript and can also use lodash as an option.