Skip to content

Instantly share code, notes, and snippets.

@gmmorris
Last active February 7, 2016 21:57
Show Gist options
  • Save gmmorris/c4fc7340d6c55ddd8f03 to your computer and use it in GitHub Desktop.
Save gmmorris/c4fc7340d6c55ddd8f03 to your computer and use it in GitHub Desktop.
Code example for causing an undefined property access error
const DarthVader = {
name : 'Anakin',
mother : {
name : 'Shmi'
}
}
function getFatherName(person) {
return person.father.name
}
// Throws the error: Uncaught TypeError: Cannot read property ‘name’ of undefined
let darthVadersFather = getFatherName(DarthVader)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment