Skip to content

Instantly share code, notes, and snippets.

@jacobjuul
Last active October 3, 2016 13:48
Show Gist options
  • Save jacobjuul/866c6452dde87ae69e988e80e3100a43 to your computer and use it in GitHub Desktop.
Save jacobjuul/866c6452dde87ae69e988e80e3100a43 to your computer and use it in GitHub Desktop.
// Object assign
const someObject = {
prop1: '123',
prop2: '1234,
};
const newObj = Object.assign({}, someObject, { prop1: '1337' });
const newObj2 = { ...someObject, prop1: '1337' };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment