Skip to content

Instantly share code, notes, and snippets.

@calston
Last active August 29, 2015 14:06
Show Gist options
  • Save calston/b4176f7476f88782fea2 to your computer and use it in GitHub Desktop.
Save calston/b4176f7476f88782fea2 to your computer and use it in GitHub Desktop.
function Test(bar){
this.bar = bar;
this.foo = function(){
function foo2(){
console.log(this.bar);
}
foo2.bind(this);
foo2();
}
this.foo();
}
> var test = new Test(3);
undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment