Yes, I think about these things sometimes. What are the 'falsey' values that are not undefined (useful in iterating over an object when .hasOwnProperty() is either unavailable or inadvisable, or iterating over an array when you want to know if something, anything, even a 'falsey' value is defined for a given index).
Anyways, so far I have the empty string, 0, null, and false:
Anyone have any additional ideas?Code:['', 0, null, false]

