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”
getAttribute returns an object (valid object or a null object). So the check
(typeof item === "undefined")is not correct. It should be(item === null).