I want to build an object obj1 with property obj2, which is another object. To avoid redeclaring obj1 and obj2, I use the following code:
if (!obj1) obj1 = {};
if (!obj1.obj2) obj1.obj2 = {};
// code to use obj1
Assume, obj1 and obj1.obj2 aren't defined yet, the code causes the browser to report the error "obj1 is not defined".
If I change the code to:
if (typeof obj1==='undefined') obj1 = {};
if (!obj1.obj2) obj1.obj2 = {};
// code to use obj1
Then there's no error, while I think it should report "obj2 is not defined". I'm puzzled as to why the JavaScript treats the short-hand falsy check of a reference and a property differently. Can anyone shed a light on that?
if(!window.obj1). – sje397 Nov 30 '10 at 11:08obj1is a type,obj2is a property. – leppie Nov 30 '10 at 11:10