Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save karkranikhil/46b22b01813d3df66772c4e0022f39d9 to your computer and use it in GitHub Desktop.

Select an option

Save karkranikhil/46b22b01813d3df66772c4e0022f39d9 to your computer and use it in GitHub Desktop.
const obj4 ={
firstName:'nikhil',
lastName:'karkra',
isTeaching: true,
greet:function(){
console.log("hi")
},
address:{
city:'Melbourne'
}
}
const newObj = {...obj4, address:{city:'new city'}}
console.log(newObj.address.city) // "new city"
console.log(obj4.address.city) // "Melbourne"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment