Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please consider the following snippet (fiddle here):

​var a;

​a = 1;
console.log(delete a​); // prints 'false'

​b = 1;
console.log(delete b);​ // prints 'true'​​​​

Why does the delete keywords behave differently on the global variables a and b?

share|improve this question
1  
MDN says Returns false only if the property exists and cannot be deleted. It returns true in all other cases. After deleting, try testing the actual values. You'll see that a was not deleted. – Nile Sep 14 '12 at 23:31
1  
@Nile: Yeah, the behaviour is different. I don't see how this explains anything. – Randomblue Sep 14 '12 at 23:32
It behaves differently because it is defined to? What else do you want? – Eric Sep 14 '12 at 23:33
2  
@Eric: Maybe an explanation of why it was defined to? – Sasha Chedygov Sep 14 '12 at 23:35

4 Answers

up vote 4 down vote accepted

From the MDN docs:

The delete operator removes a property from an object.

A global variable (without var) is a property on the global object (typically window), so can be deleted.

A var is not a global variable, but a local variable in the outer scope - not a property of the global object - so delete does not delete it. From those docs:

x = 42;     // creates the property x on the global object
var y = 43; // declares a new variable, y

delete x;   // returns true  (x is a property of the global object and can be deleted)
delete y;   // returns false (delete doesn't affect variable names)
share|improve this answer
Declared and undeclared global variables are both properties of the global object. They only differ based on the value of the configurable attribute. For more info, see: stackoverflow.com/a/16007360/1306809 – Matt Coughlin Apr 15 at 15:11

MDN says delete returns false only if the property exists and cannot be deleted. It returns true in all other cases. After deleting, try testing the actual values. You'll see that a was not deleted. This is because, as the MDN page says, delete will not affect variable names.

It has no effect on variable or function names.

(i.e., defined with var and not off the global object)

Take a look at the examples on the following page. https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/delete

share|improve this answer
ermm... why down vote? – Nile Sep 14 '12 at 23:34
Have an upvote to make up for it – Eric Sep 14 '12 at 23:34
such a wonderful community. uv'd you too @Eric – Nile Sep 14 '12 at 23:35

From mozilla docs about var :

The difference is that a declared variable is a non-configurable property of the global object while an undeclared is configurable.

var a; --> This is a declared variable, because you are using var, so it's not configurable.

a = 6; --> This is an undeclared variable, because you are not using var, so it's configurable.

both syntaxes above will end up with a var named a attached as a property of the global object (window typically) and properties has these attributes:

  • Writable. If false, the value of the property can not be changed.
  • Configurable. If false, any attempts to delete the property or change its attributes (Writable, Configurable, or Enumerable) will fail.
  • Enumerable. If true, the property will be iterated over when a user does for (var prop in obj){} (or similar).

that is extracted from ecmascript5 objects and properties , and as you can read, the configurable attribute of the variable in question affects whether the variable can or cannot be deleted.

share|improve this answer
+1 This is the best answer for the question. The accepted answer is not entirely accurate. – Matt Coughlin Apr 15 at 15:15

"var a" means it cannot be accessed from anywhere outside of the current block, thus deleting it WOULD mean UNDECLARE (not same as undefined), thus allowing to write "var a" again in the same block (error).

Allowed usages (MDN):

delete object.property 
delete object['property'] 
delete object[index] 
delete property

It's like GOTO and unstructured programming, where you might need to manually clean up resources, it's kind of ~Destructor in C (though not the same). You can delete an object like ~a(); but you cannot "'UNDECLARE' a variable" like "int i".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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