Skip to content

Instantly share code, notes, and snippets.

@karkranikhil
Last active April 13, 2019 12:08
Show Gist options
  • Select an option

  • Save karkranikhil/6c308a05373edb6e1dce2df3068aa9ad to your computer and use it in GitHub Desktop.

Select an option

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