Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026
The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.
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.
Also note that if properties of the object are not primitive types, only their reference is copied, not the object.