Created
May 11, 2019 20:36
-
-
Save lumosmind/a2c8e4926ba3f49c4081f47078eaf325 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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