In the following code sample, typeof item === "undefined" never returns true. i am trying to get an attribute from XML, if the attribute is not there in the XML it returns "undefined", but i am not able to capture whether it has returned undefined or not, firebug shows "typeof item" as an "object"
var item;
var itemIDs = {};
if (items.status == 200)
{
var rows = items.responseXML.getElementsByTagName('z:row');
for(i=0;i<rows.length;i++)
{
//rows[i].attr(attribute);
item = rows[i].getAttribute(attribute);
if(typeof item === "undefined")
{
continue;
}
else
{
item = item.match(/[^\d+;#][\w\W]+/);
itemIDs[item] = 1 ;
}
}
}
else
{
alert('There was an error: ' + items.statusText);
}
return itemIDs;
Edit: I changed the condition to if(item == undefined), The code now works as expected now
Edit2: Double checked it, item variable was never null , it was "undefined"
typeof xis returning"object"thenxcould be an object or it could benull. AlertJSON.stringify(x)to find out exactly what your item is! – Ray Toal Aug 16 '11 at 5:31==is not a mess, and it's frequently very handy. You do need to understand what it does, and what it does is complex. But it's not "a mess". – T.J. Crowder Aug 16 '11 at 5:37undefined==null, butundefined!==null– vol7ron Aug 16 '11 at 5:39