Skip to content

Instantly share code, notes, and snippets.

@kikar
Created March 10, 2016 23:08
Show Gist options
  • Save kikar/1f329828e1c3e684df45 to your computer and use it in GitHub Desktop.
Save kikar/1f329828e1c3e684df45 to your computer and use it in GitHub Desktop.
function foo() {
console.log( this.a );
}
var obj = {
a: 2,
foo: foo
};
obj.foo(); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment