Created
July 17, 2019 04:25
-
-
Save AliN11/4ed7069da3c62a6c041084ecb2409296 to your computer and use it in GitHub Desktop.
This file contains 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
let house1 = { | |
color: 'green' | |
} | |
let house2 = house1; | |
console.log(house1.color); // green | |
console.log(house2.color); // green | |
house1.color = "yellow" | |
console.log(house1.color); // yellow | |
console.log(house2.color); // yellow | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment