Skip to content

Instantly share code, notes, and snippets.

@captDaylight
Last active October 5, 2015 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save captDaylight/ca196c0721abe15dcaf9 to your computer and use it in GitHub Desktop.
Save captDaylight/ca196c0721abe15dcaf9 to your computer and use it in GitHub Desktop.
let objOne = {name: 'buck', height: 6};
objOne.name = 'avery'; // object mutated
// non-mutation with assign method
// don't forget the empty object as the first parameter
let objTwo = Object.assign({}, objOne, {height: 4});
console.log(objOne, objTwo);
// {name: "avery", height: 6} {name: "avery", height: 4}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment