Because isNaN doesn't use parseInt? – Dave NewtonNov 25 '11 at 16:30
1
The key is to understand the difference between type conversion and parsing, isNaN behind the scenes, will do type conversion of its argument to the Number type, while parseInt will try to parse the string provided. See also: stackoverflow.com/questions/4090518/… – CMSNov 25 '11 at 16:39
IsNaN takes an integer as an argument - therefore Javascript converts "" to 0
parsetInt takes a string as an argument - therefore an empty sting is not a number
isNaN doesn't take an "integer", it expects a Number (which are all IEEE-754 doubles, e.g. isNaN(0.5) yields false), that's why it tries to type convert the argument value to Number – CMSNov 25 '11 at 16:33
Your right - but I was trying to keep the logic simple. – Ed HealNov 25 '11 at 16:35
This is because "" is equivalent to zero in JavaScript. Try "" == 0. This means if you try evaluating it in a numerical equation, it will come up as 0. When you parse it on the other hand it realizes there is nothing there.
As an alternative to parseInt you could use Math.floor. This will give you 0 for "".
isNaNdoesn't useparseInt? – Dave Newton Nov 25 '11 at 16:30isNaNbehind the scenes, will do type conversion of its argument to theNumbertype, whileparseIntwill try to parse the string provided. See also: stackoverflow.com/questions/4090518/… – CMS Nov 25 '11 at 16:39