Created
February 25, 2017 19:48
-
-
Save Dosant/b2c771ff9c8bed9d1eed6b00649bb6cf 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 person = { | |
firstName: 'John', | |
lastName: 'Snow' | |
}; | |
var newPerson = person; | |
newPerson.lastName = 'Summer'; | |
// person.lastName теперь 'Summer' | |
var a = {}, b = {}, c = {}; | |
// a,b,c все ссылаются на свой объкет | |
// разные пустые объекты | |
a = b = c = {}; | |
// a, b, и c ссылаются на один и тот же пустой объект |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment