Skip to content

Instantly share code, notes, and snippets.

@dsimard
Created September 13, 2011 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsimard/1213798 to your computer and use it in GitHub Desktop.
Save dsimard/1213798 to your computer and use it in GitHub Desktop.
Redefine undefined outside the scope
<p>First, undefined is defined to <em id="step1"></em></p>
<p>Then, undefined is redefined to <em id="step2"></em></p>
$(document).ready(function() {
undefined = false;
$("#step1").text();
/* We create a self-invoking function to refefine undefined to undefined */
(function() { window.undefined = undefined })();
$("#step2").text(undefined);
});
normalize_css: no
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment