Skip to content

Instantly share code, notes, and snippets.

Created January 6, 2016 16:38
Show Gist options
  • Save anonymous/562078fb6e7a1dc964ca to your computer and use it in GitHub Desktop.
Save anonymous/562078fb6e7a1dc964ca to your computer and use it in GitHub Desktop.
var person = {
firstName: 'Hoang',
lastName: 'Pham',
showName: function() {
console.log(this.firstName + ' ' + this.lastName);
}
};
//Ở đây this sẽ là object person
person.showName(); //Hoang Pham.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment