Skip to content

Instantly share code, notes, and snippets.

@jason-den
Created February 22, 2020 01:23
Show Gist options
  • Save jason-den/6135928c82c1bffe1392704d7c9b6065 to your computer and use it in GitHub Desktop.
Save jason-den/6135928c82c1bffe1392704d7c9b6065 to your computer and use it in GitHub Desktop.
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