Skip to content

Instantly share code, notes, and snippets.

@imbcmdth
Created October 12, 2012 21:35
Show Gist options
  • Save imbcmdth/3881651 to your computer and use it in GitHub Desktop.
Save imbcmdth/3881651 to your computer and use it in GitHub Desktop.
Javascript this quiz
// test is global..
var test = {
test: 5,
fn: function (n) {
(function () {
this.test = n;
}());
return this.test;
}
};
// What does this return
test.fn(1);
// And this?
test.fn(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment