Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created May 15, 2016 09:28
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 codeaholicguy/bfe7599730b95194dd6bfcb85d2bb3e0 to your computer and use it in GitHub Desktop.
Save codeaholicguy/bfe7599730b95194dd6bfcb85d2bb3e0 to your computer and use it in GitHub Desktop.
var name = 'Hoang';
var obj = {
name: 'Alibaba',
prop: {
name: 'Aladin',
getName: function() {
return this.name;
}
}
};
console.log(obj.prop.getName());
var test = obj.prop.getName;
console.log(test());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment