Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created February 25, 2017 19:40
Show Gist options
  • Save Dosant/2f077924ef99c9d1b7a4684a99535346 to your computer and use it in GitHub Desktop.
Save Dosant/2f077924ef99c9d1b7a4684a99535346 to your computer and use it in GitHub Desktop.
var person = {
name: {
first: 'John'
}
};
person.name.first // John
person.name.second // undefiend
person.education.school // TypeError. Can't get 'school' of undefined
person.education && person.education.school // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment