let x = { a: 1, b: 2, c: 3 } let y = {c: 4, d: 5, e: 6 } let z = Object.assign(x, y) console.log(z) // OUTPUTS: { a:1, b:2, c:4, d:5, e:6 }