Revisions

gist: 180087 Download_button fork
public
Public Clone URL: git://gist.github.com/180087.git
Embed All Files: show embed
Variable Scope Example.js #
1
2
3
4
5
6
7
8
> print(empty);
(shell):1: ReferenceError: empty is not defined
print(empty);
^
> (function () { empty = 4 })();
> print(empty);
4