Skip to content

Instantly share code, notes, and snippets.

@gsans
Created November 28, 2014 10:31
Show Gist options
  • Save gsans/dbc7f1136908daa5b402 to your computer and use it in GitHub Desktop.
Save gsans/dbc7f1136908daa5b402 to your computer and use it in GitHub Desktop.
var number = 7;
console.log(this.number === window.number); // true
another = 8; // global variable
console.log(this.another === window.another); // true
//within a function this is set to window
function Fn() {
return this;
};
console.log(Fn() === window); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment