Skip to content

Instantly share code, notes, and snippets.

@specialunderwear
Created January 29, 2012 23:37
Show Gist options
  • Save specialunderwear/1701373 to your computer and use it in GitHub Desktop.
Save specialunderwear/1701373 to your computer and use it in GitHub Desktop.
new scope
> var one = 1;
> var two = new one;
> two;
1
> one = 2;
> two;
1
> one;
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment