Skip to content

Instantly share code, notes, and snippets.

@josescasanova
Created February 7, 2016 01:32
Show Gist options
  • Save josescasanova/80fe2688253c6e9ad050 to your computer and use it in GitHub Desktop.
Save josescasanova/80fe2688253c6e9ad050 to your computer and use it in GitHub Desktop.
var a = {}, b = {};
a.foo = 42;
b.foo = 18;
a.alertFoo = function() { alert(this.foo); };
a.alertFoo(); // 42
a.alertFoo.call(b); // 18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment