Skip to content

Instantly share code, notes, and snippets.

@ikr
Created March 8, 2011 06:56
Show Gist options
  • Save ikr/859959 to your computer and use it in GitHub Desktop.
Save ikr/859959 to your computer and use it in GitHub Desktop.
Protection against someone defining the "undefined"
var undefined = 1;
(function (undefined) {
print(undefined); // really undefined, not 1
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment