Created
November 19, 2016 19:28
-
-
Save nesbtesh/4a35b4fb94d21fb914435ca92bc732a9 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
var object1 = {color: "blue", size: 12}; | |
var object2 = object1 | |
object2.color = "red" | |
object1 === object2 //true | |
object3 = Object.assign({}, object1) | |
object3.color = "red" | |
object1 === object3 //false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment