Created
January 30, 2012 00:01
-
-
Save specialunderwear/1701459 to your computer and use it in GitHub Desktop.
new scope
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
> var one = 1; | |
> var change_this_one = function(baseline) { | |
> this.one = baseline; | |
> } | |
> one; | |
1 | |
> var base = new change_this_one(10); | |
> one; | |
1 | |
> base.one; | |
10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment