Is null the same as undefined ?
In this snitppet the if is entered - but I do not understand why:
$.writeln (oFound + " " + KLD_F.iError);
if (oFound == undefined || (KLD_F.iError != 0)) { // Nothing found -----------
KLD_F.DisplayInfoF (KLD_F.UItxt.ButtonFind.@msg_07.toString(), "red"); // not found (anymore)
KLD_F.bNextCompOK = true; // propably look into next book component
}
The writeln says: null 0
Is in the condition null the same as undefined?

