Last active
February 7, 2016 21:57
-
-
Save gmmorris/c4fc7340d6c55ddd8f03 to your computer and use it in GitHub Desktop.
Code example for causing an undefined property access error
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
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