Hi
Crockford behaupted in seinem O'Reilly Buch "JS the good parts" dass Objekte/Hashes kein undefined als Wert haben dürfen.
"An object is a container of properties, where a property has a name and a value. A property name can be any string, including the empty string. A property value can be any JavaScript value except for undefined."
Ich kann dass im FF nicht nachvollziehen, hat jmd ne Ahnung was gemeint sein könnte, gibt es JS Engines die da Probleme machen?
var h={i:undefined};
for (x in h) alert(x+" : "+h[x]); //gibt "i : undefined" aus
Grüße
Rolf