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
| ||||
|
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
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 |
|
| |||||||||
feedback
|
|
| |||
|
feedback
|