Skip to content

Instantly share code, notes, and snippets.

@conanak99
Forked from anonymous/thisSample.js
Last active January 6, 2016 17:15
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 conanak99/0c51e23ac24b5210f4d8 to your computer and use it in GitHub Desktop.
Save conanak99/0c51e23ac24b5210f4d8 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.
$('button').click(person.showName); //showName truyền vào như callback
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment