When convert null to string it is better to return empty string then 'null' string;
var a= null; var b= ''; b= 'test' + a; //b == 'testnull'; EXPECTED: b == 'test'
_______________________________________________ Es4-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es4-discuss
