Created
December 29, 2015 00:54
-
-
Save Mooophy/573eb2159966dcc53a9a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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