Skip to content

Instantly share code, notes, and snippets.

@tkraak
Created November 4, 2016 18:10
Show Gist options
  • Save tkraak/ec969bdde4271c2ace44414d1196627d to your computer and use it in GitHub Desktop.
Save tkraak/ec969bdde4271c2ace44414d1196627d to your computer and use it in GitHub Desktop.
Gist from mistakes.io
// standalone function invocation: default binding
function foo() {
return this.a;
}
var a = 42;
foo();
var obj = {
a: 2,
foo: foo
}
obj.foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment