MikeM
MikeM

Reputation: 27415

undefined = true; then back to undefined?

Some javascript tomfoolery:

If this works

undefined = true;

then how can you revert back to set undefined back to representing undefined?


Sure, the easy way is to store undefined in another variable before setting undefined to true. What other way can you restore undefined?

First thought to set it back was delete undefined;, didn't work.

Upvotes: 5

Views: 825

Answers (2)

alex
alex

Reputation: 490481

(function(undefined) {

   // undefined is undefined again!

})();

jQuery uses this pattern.

delete operator is best for deleting properties from objects. There are a number of things it won't work on, and using it with an Array just sets the element to undefined (sort of, it won't be enumerated with in). Best to use splice() with an Array.

Upvotes: 7

David Tang
David Tang

Reputation: 93694

Alex's answer is the safe and practical way to ensure undefined is really undefined.

But JS is super flexible, so for fun, if you wish to revert the global undefined, then you can reassign window.undefined from the safety of a new function scope:

(function () {            // Create a new scope
   var a;                 // "a" is undefined in this scope
   window.undefined = a;  // Set the global "undefined" to "a"
})()                      // Execute immediately

Taking this idea futher, you can reconfigure the above to become:

undefined = (function () {
   var a;                 // "a" is undefined
   return a;              // return "a"
})();

Or really, just this:

undefined = (function () {
    return;
})();

But in fact, you don't actually need to return anything:

undefined = function(){}();

Of course, then there's also the void operator ;-) doh!

undefined = void 0;

Upvotes: 8

Related Questions