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?
Reading through the Backbone.js source code:
What is |
||||
|
|
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.
What does
|
|
|||
|
|||
@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 |
|
|
|||||||||
|
|
|
|||
|
|