Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created February 6, 2015 19:56
Show Gist options
  • Save santosh79/ac8f7cc7ed58760f7ceb to your computer and use it in GitHub Desktop.
Save santosh79/ac8f7cc7ed58760f7ceb to your computer and use it in GitHub Desktop.
function outer() {
this.foo = 'blah';
function inner() {
console.log(this.foo);
}
inner();
}
var obj = Object.create(null);
outer.call(obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment