Created
April 13, 2019 12:20
-
-
Save karkranikhil/46b22b01813d3df66772c4e0022f39d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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