Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
To merge two simple objects into one you can use the spread operator in this way:
const object1 = {
name: 'Flavio'
}
const object2 = {
age: 35
}
const object3 = {...object1, ...object2 }
Notice that if both objects have a property with the same name, then the second object property overwrites the first.
Note that if any of the properties are objects (not primitives), only their references are copied, not the nested objects themselves.