Skip to content

Instantly share code, notes, and snippets.

@conanak99
Created January 7, 2016 17:50
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/98fe08437cb042d5d4af to your computer and use it in GitHub Desktop.
Save conanak99/98fe08437cb042d5d4af to your computer and use it in GitHub Desktop.
var person = {
firstName: 'Hoang',
lastName: 'Pham',
friends : ['Minh', 'Sang', 'Khoa', 'Hoang'],
showFriendFixed: function() {
var personObj = this; //Gán giá trị this vào biến personObj
this.friends.forEach(function(fr){
console.log(personObj.firstName + ' have a friend named ' + fr);
});
}
};
person.showFriendFixed(); //Hàm chạy đúng
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment