Created
February 22, 2020 01:23
-
-
Save jason-den/6135928c82c1bffe1392704d7c9b6065 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 obj1 = {a:'a', b:'b'} | |
const obj2 = {...obj1, a:'new a'} | |
console.log(obj2); | |
// > Object { a: "new a", b: "b" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment