I've been looking through a lot of blog posts, documentation, etc. about JavaScript's strict mode.

I noticed that there are a lot of restrictions on the delete keyword. I don't even know if you could call them restrictions. It seems like delete just no longer works.

I would love to use strict mode. It's a great idea. But I also think delete is a great idea.

Are there any alternative ways to "delete" a variable, or am I just screwed?

link|improve this question

Mind telling us what you are trying to achieve? As it stands the question reads like a rant. – Oded Apr 14 '11 at 19:15
1  
Sounds like hes looking for an alternative to the delete keyword to delete a variable in javascript... – Chris Buckler Apr 14 '11 at 19:23
feedback

3 Answers

up vote 1 down vote accepted

How about just setting your variables to null? Once you set the variables to null, the JavaScript garbage collector will delete any unreferenced variables on next run.

HTH.

EDIT: As @chris Buckler mentioned in the comments, this can't be done at global scope, as global variables never get garbage collected.

link|improve this answer
Doing this will assing the value to null but the variable will not actually be destroyed. – Chris Buckler Apr 14 '11 at 19:31
@Chris - Setting it to null will normally (if there are no more references to the variable) make it eligible for GC. Unfortunately this doesn't apply to global variables according to stackoverflow.com/questions/864516/…, but the question didn't enlighten us to the fact that the OP was referring to a global variable. – Karl Nicoll Apr 14 '11 at 19:36
That's why I didnt mark you down :) – Chris Buckler Apr 14 '11 at 19:39
If you were to do something like for (prop in global), config would still be run for. – tylermwashburn Apr 14 '11 at 19:39
feedback

You do not delete variables.

delete is used to remove a property from an object.

delete foo.a will remove property "a" from object foo.

Why do you need to remove a local variable from scope? You can just set the variable to be undefined

(function(undefined) {
    // undefined is undefined.
})();

(function() {
    var undefined; // undefined is undefined
})();

Another way to check againts undefined would be doing foo === void 0 since void is an operator which runs the expression following it and returns undefined. It's a clever trick.

link|improve this answer
It's not recommended to set variables to the value of undefined since in non-strict JS versions the value of undefined can be manipulated. – Eli Apr 14 '11 at 19:34
@Eli but your going to have a local value of undefined right? Besides if you find some code that manipulates undefined burn it then ban the author from using javacript. – Raynos Apr 14 '11 at 19:38
1  
I can't think of an instance where I've ever needed it. For comparison's it is always recommended to type compare and not value compare: typeof foo === 'undefined' is preferred over foo == undefined. A variable should be garbage collected once the engine determines that it will no longer be accessed by determining if it can be referenced externally. This is why proper scoping is so important. It does not matter if it's undefined, because setting a variable to undefined will not destroy it. I highly recommend this read: perfectionkills.com/understanding-delete – Eli Apr 14 '11 at 19:41
1  
@Eli it's bad practice to compare againts the global undefined. comparing againts a local undefined is safe. – Raynos Apr 14 '11 at 19:51
1  
I understand that it is wrong. But you can't always prevent bugs from going into production. I am not pulling these best practices out of thin air. This has been recommended time and time again by brilliant JS engineers and for good reason. I am just trying to inform you of how others avoid ever needing to run into the problem to begin with. – Eli Apr 14 '11 at 19:55
show 21 more comments
feedback

As others are alluding to, you should never really need to delete variables. It sounds more like an issue of not properly controlling scope. If you keep your variables in a function scope, they will be deallocated from memory once they are no longer referenced.

Do you have another global namespace other than the global window namespace? It would probably benefit you to have something like that for this situation:

(function(global) {

    var Application = {};

    Application.config = { /* config stuff */ };

    global.Application = Application;

})(window);

// if you need to remove config, you can remove it from
// your object and not the window object:
delete Application.config;

For a real in-depth understanding of deleting and undefined in JS:

http://perfectionkills.com/understanding-delete/

http://scottdowne.wordpress.com/2010/11/28/javascript-typeof-undefined-vs-undefined/

How do I check to see if an object has an attribute in Javascript?

link|improve this answer
I have a global config variable that's used to configure some stuff in a JavaScript file. I want to delete it after it's done loading, but it just throws an error, and leaves it there. The line is delete global.config;. – tylermwashburn Apr 14 '11 at 19:27
See updated answer. – Eli Apr 14 '11 at 19:33
The config object has to be defined before the script is run. – tylermwashburn Apr 14 '11 at 19:36
That won't affect the applicability of what I've said. Do you have a sample of how you're config is initialized? – Eli Apr 14 '11 at 19:37
@tylerwashburn if you want to delete from global scope delete from the window object. Global scope and the window object are the same. Just delete window.config – Raynos Apr 14 '11 at 19:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.