Skip to content

Instantly share code, notes, and snippets.

@pyrobot
Created November 24, 2012 18:01
Show Gist options
  • Save pyrobot/4140715 to your computer and use it in GitHub Desktop.
Save pyrobot/4140715 to your computer and use it in GitHub Desktop.
this!
function outer() {
this.a = 5;
this.addOne = function (x) { return x + 1; };
this.b = this.addOne(this.a);
}
var testObject = outer();
// what do you think happens here?
console.log(testObject.b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment