const people = {
  name: "Ram",
  age: 25,
  hobby: "listening music"
};

const newObj = {...people,contry:'india', city: 'delhi'}}
console.log(newObj);
const people = {
  name: "Ram",
  age: 25,
  hobby: "listening music"
};

const newObj = {...people,contry:'india', city: 'delhi'}}
console.log(newObj);
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://www.jshub1.com/