Skip to content

Instantly share code, notes, and snippets.

Created January 6, 2016 16:46
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 anonymous/8918b832d66a98cd3b76 to your computer and use it in GitHub Desktop.
Save anonymous/8918b832d66a98cd3b76 to your computer and use it in GitHub Desktop.
var firstName = 'Hoang', lastName = 'Pham';
// 2 biến này nằm trong object window
function showName()
{
console.log(this.firstName + ' '+ this.lastName);
}
window.showName(); // Hoang Pham. this trỏ tới object window
showName(); //Hoang Pham. Object gọi hàm showName vẫn là object window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment