Skip to content

Instantly share code, notes, and snippets.

@yanisurbis
Last active August 29, 2015 14:26
Show Gist options
  • Save yanisurbis/d50c858427ea3824a48d to your computer and use it in GitHub Desktop.
Save yanisurbis/d50c858427ea3824a48d to your computer and use it in GitHub Desktop.
function foo() {
console.log( this.a );
}
var obj = {
a: 2,
foo: foo
};
var bar = obj.foo;
var a = "global";
bar();
//--------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment