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

Possible Duplicate:
What does “javascript:void(0)” mean?

Reading through the Backbone.js source code:

validObj[attr] = void 0;

What is void 0? What is the purpose of using it here?

share|improve this question

marked as duplicate by Gabe, Mark, zzzzBov, Martin, Brian Roach Sep 18 '11 at 2:00

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 76 down vote accepted

What does void 0 mean?

void[MDN] is a prefix keyword that takes one argument and always returns undefined.

Examples

void 0
void (0)
void "hello"
void (new Date())
//all will return undefined

What's the point of that?

It seems pretty useless, doesn't it? If it always returns undefined, what's wrong with just using undefined itself?

In a perfect world we would be able to safely just use undefined: it's much simpler and easier to understand than void 0. But in case you've never noticed before, this isn't a perfect world, especially when it comes to Javascript.

The problem with using undefined is that undefined is mutable[wtfjs]. undefined is really just a global variable that's not assigned to anything, and you can change its value at your own caprice.

alert(undefined); //alerts "undefined"
var undefined = "new value";
alert(undefined) //alerts "new value"

Because of this, you cannot safely rely on undefined behaving how it is supposed to.

void, on the other hand, cannot be overidden. void 0 will always return undefined. undefined, on the other hand, can be whatever Mr. Javascript Man decides he wants it to be.

Why void 0, specifically?

Why should we use void 0? What's so special about 0? Couldn't we just as easily use 1, or 42, or 1000000 or "Hello, world!"?

And the answer is, yes, we could, and it would work just as well. The only benefit of passing in 0 instead of some other argument is that 0 is short††, fast, and idiomatic.


Footnotes

(AFAIK; I'll give you 100 brownie hacker points if you overload void).
††Code golfers will use void(0) instead of undefined for this very reason.

share|improve this answer
1  
Hum. Why void 0 specifically? What is the purpose here? – Randomblue Sep 17 '11 at 4:02
@Randomblue I edited to answer your comment – Peter Olson Sep 17 '11 at 4:14
2  
+1 for the wftjs link! – Ray Toal Sep 17 '11 at 4:20
@PeterOlson the main benefit of void 0 is that the 0 is the de-facto standard for using void to generate an undefined value. – Raynos Sep 17 '11 at 10:40
First, undefined is not a keyword, it's just a property of the global object. Second, in ECMAScript5, it is write protected, so the void 0 trick is only neccessary if someone uses undefined as a local variable within a function. – Pumbaa80 Sep 17 '11 at 11:49
show 5 more comments

void is a reserved Javascript keyword. It evaluates the expression and always returns undefined.

share|improve this answer
1  
Hum. Why void 0 specifically? What is the purpose here? – Randomblue Sep 17 '11 at 4:01
1  
It's probably shorter than undefined, and also is guaranteed to return it (unlike the global overwriteable undefined). – Digital Plane Sep 17 '11 at 4:04

void 0 returns undefined and can not be overwritten while undefined can be overwritten.

var undefined = "HAHA";
share|improve this answer

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