Skip to content

Instantly share code, notes, and snippets.

@doug2k1
Last active September 6, 2017 17:58
Show Gist options
  • Save doug2k1/43245ab6dad80bfb66a4f121d4968c71 to your computer and use it in GitHub Desktop.
Save doug2k1/43245ab6dad80bfb66a4f121d4968c71 to your computer and use it in GitHub Desktop.
// Constante no objeto 'window'
window.playerName = 'Tidus'
const sayGlobalName = function () {
console.log(this.playerName)
}
// A chamada abaixo não se enquadra a nenhuma das outras regras,
// portanto o 'this' na função é o objeto global
// ('window' no navegador ou 'global' no Node.js)
sayGlobalName() // Tidus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment