Skip to content

Instantly share code, notes, and snippets.

@jsam
Created January 31, 2015 12:10
Show Gist options
  • Save jsam/8fe8caa18e616388f225 to your computer and use it in GitHub Desktop.
Save jsam/8fe8caa18e616388f225 to your computer and use it in GitHub Desktop.
what it will print out?
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