Skip to content

Instantly share code, notes, and snippets.

@Mooophy
Created December 29, 2015 00:54
Show Gist options
  • Select an option

  • Save Mooophy/573eb2159966dcc53a9a to your computer and use it in GitHub Desktop.

Select an option

Save Mooophy/573eb2159966dcc53a9a to your computer and use it in GitHub Desktop.
b = 99999;
function Foo() {
var a = 123;
this.a = 456;
(function () {
alert(a);
alert(this.a);
alert(this.b);
})();
}
var f = new Foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment