Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Object</h1>
<h2>The Object.assign() Method</h2>
<p id="demo"></p>
<script>
// Create Target Object
const person1 = {
  firstName: "John",
  lastName: "Doe",
  age: 50,
  eyeColor: "blue"
};
// Create Source Object
const person2 = {firstName: "Anne",lastName: "Smith"};
// Assign Source to Target
Object.assign(person1, person2);
// Display Target
let text = Object.entries(person1);
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>