Skip to content

Instantly share code, notes, and snippets.

@gsans
Created November 28, 2014 10:31
Show Gist options
  • Save gsans/856938995f371d471d9d to your computer and use it in GitHub Desktop.
Save gsans/856938995f371d471d9d to your computer and use it in GitHub Desktop.
// object scope
var scope = {
number: 7,
Fn: function() {
return this.number;
}
};
// this points to scope (not window)
console.log(scope.Fn()); // 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment