Skip to content

Instantly share code, notes, and snippets.

@jsam
Last active August 29, 2015 14:14
Show Gist options
  • Save jsam/898f1c19bd2ca3013001 to your computer and use it in GitHub Desktop.
Save jsam/898f1c19bd2ca3013001 to your computer and use it in GitHub Desktop.
what is the output?
var fullname = 'Samuel';
var obj = {
fullname: 'Alexandar',
prop: {
fullname: 'Alessio',
getFullname: function() {
return this.fullname;
}
}
};
console.log(obj.prop.getFullname());
var test = obj.prop.getFullname;
console.log(test());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment