Skip to content

Instantly share code, notes, and snippets.

@conanak99
Created January 6, 2016 17:21
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/c4dee29b809474107032 to your computer and use it in GitHub Desktop.
Save conanak99/c4dee29b809474107032 to your computer and use it in GitHub Desktop.
var person = {
firstName: 'Hoang',
lastName: 'Pham',
showName: function() {
console.log(this.firstName + ' ' + this.lastName);
}
};
$('button').click(person.showName); //showName truyền vào như callback, ở đây this chính là button
// Dùng anonymous function
$('button').click(function(){ person.showName() });
// Dùng bind
$('button').click(person.showName.bind(person)); //this ở đây vẫn là object person
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment