Small glitch (IMHO) in JavaScript is related to isNaN() boolean
function. If passed a null, it returns true which is incorrect.
This one cause me quite a bit of grief until I detected it and was
able to code around it.
Anybody know the reasoning for the result being false and not true for
isNaN(null).
- JsD
function. If passed a null, it returns true which is incorrect.
This one cause me quite a bit of grief until I detected it and was
able to code around it.
Anybody know the reasoning for the result being false and not true for
isNaN(null).
- JsD
Comment