Skip to content

Instantly share code, notes, and snippets.

@lumosmind
Created May 11, 2019 20:36
Show Gist options
  • Save lumosmind/a2c8e4926ba3f49c4081f47078eaf325 to your computer and use it in GitHub Desktop.
Save lumosmind/a2c8e4926ba3f49c4081f47078eaf325 to your computer and use it in GitHub Desktop.
// eski kopyalama yöntemi
// const o2 = Object.assign({}, o1);
//yeni kopyalama yöntemi
const o2 = JSON.parse(JSON.stringify(o1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment