Skip to content

Instantly share code, notes, and snippets.

@shanefulmer
Created August 10, 2013 02:30
Show Gist options
  • Save shanefulmer/6198772 to your computer and use it in GitHub Desktop.
Save shanefulmer/6198772 to your computer and use it in GitHub Desktop.
function One() {
this.a = function () {
return this.b();
}
}
function b() {
return 1;
}
var one = new One();
var f = one.a;
console.log(f());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment