Skip to content

Instantly share code, notes, and snippets.

@quocnguyen
Created November 17, 2018 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quocnguyen/5a04b2c1af4278a6385861028fd0a253 to your computer and use it in GitHub Desktop.
Save quocnguyen/5a04b2c1af4278a6385861028fd0a253 to your computer and use it in GitHub Desktop.
// Fix required to have obj.prop.getFullname function to print out "Embrace-it"?
let fullname = 'Developer A'
let obj = {
fullname: 'Developer B',
prop: {
fullname: 'Embrace-it',
get getFullname() {
return this.fullname
}
}
}
console.log(obj.prop.getFullname)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment