Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save karkranikhil/06051591307640d9cddcb472b489d99a to your computer and use it in GitHub Desktop.

Select an option

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