Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:24
Show Gist options
  • Save ilearnjavascript/c899b4b48048bd98817fb3e2ccb992bd to your computer and use it in GitHub Desktop.
Save ilearnjavascript/c899b4b48048bd98817fb3e2ccb992bd to your computer and use it in GitHub Desktop.
es6 - new methods - 16.js
var original = { a: 0 };
var copy = Object.assign({}, original);
console.log(original); // outputs: { a: 0 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment