Created
April 13, 2019 11:32
-
-
Save karkranikhil/06051591307640d9cddcb472b489d99a 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") | |
| } | |
| } | |
| 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