Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created February 25, 2017 19:48
Show Gist options
  • Save Dosant/b2c771ff9c8bed9d1eed6b00649bb6cf to your computer and use it in GitHub Desktop.
Save Dosant/b2c771ff9c8bed9d1eed6b00649bb6cf to your computer and use it in GitHub Desktop.
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