vote up 5 vote down star
1

Hi, all.

I have a quick question (I hope!). In JS, why does isNaN(" ") evaluate to false, but isNaN(" x") evaluate to true?

I'm performing numerical operations on a text input field, and am checking if the field is null, "", or NaN. When someone types a handful of spaces into the field, my validation fails on all three, and I'm confused as to why it gets past the isNAN check.

Thanks!

flag

57% accept rate
Hm... not quite sure where the other half of the subject went. It's supposed to read, "JavaScript: Why does isNaN(" ") evaluate to false?" – IVR Avenger May 5 at 15:27
Jes, that's the behavior (empty or space returns false for isNaN), but I didn't find the exact specs of this function. – Lucero May 5 at 15:29

10 Answers

vote up 10 vote down check

JavaScript interprets an empty string as a 0, which then fails the isNAN test. You can use parseInt on the string first which won't convert the empty string to 0. The result should then fail isNAN.

link|flag
vote up 1 vote down

If you would like to implement an accurate isNumber function, here is one way to do it from Javascript: The Good Parts by Douglas Crockford [page 105]

var isNumber = function isNumber(value) {
   return typeof value === 'number' && 
   isFinite(value);
}
link|flag
vote up 3 vote down

You may find this surprising or maybe not, but here is some test code to show you the wackyness of the JavaScript engine.

document.write(isNaN("")) // false
document.write(isNaN(" "))  // false
document.write(isNaN(0))  // false
document.write(isNaN(null)) // false
document.write(isNaN(false))  // false
document.write("" == false)  // true
document.write("" == 0)  // true
document.write(" " == 0)  // true
document.write(" " == false)  // true
document.write(" " == 0)  // true
document.write(0 == false) // true
document.write(" " == "") // false

so this means that

" " == 0 == false

and

"" == 0 == false

but

"" != " "

Have fun :)

link|flag
+1 Great post. Can you add how the triple equals (=== and !==) operator fits here? – bendewey May 5 at 15:52
You should try NaN===NaN or NaN==NaN;-) I don't know if all this means the javascript engine is wacky or that javascript is bad for wacky programmers though. – KooiInc May 5 at 22:01
vote up 2 vote down

Here's a question which answers this:

http://stackoverflow.com/questions/115548/why-is-isnannull-false-in-js

link|flag
vote up 5 vote down

To understand it better, please open Ecma-Script spec pdf on page 43 "ToNumber Applied to the String Type"

if a string has a numerical syntax, which can contain any number of white-space characters, it can be converted to Number type. Empty string evaluates to 0. Also the string 'Infinity' should give

isNaN('Infinity'); // false
link|flag
vote up 1 vote down

If you look at http://www.w3schools.com/jsref/jsref_isNaN.asp you will see that strings evaluate to true. I believe that is because the characters in the string can be converted to numbers.

isNaN is used to test numbers.

link|flag
vote up 2 vote down

I'm not sure why, but to get around the problem you could always trim whitespace before checking. You probably want to do that anyway.

link|flag
vote up 0 vote down

isNaN will always return false for a string of nothing but spaces. I would suggest doing string trimming before evaluation.

link|flag
vote up 2 vote down

I think it's because of Javascript's typing: ' ' is converted to zero, whereas 'x' isn't:

alert(' ' * 1); // 0
alert('x' * 1); // NaN
link|flag
vote up 3 vote down

Try using:

alert(isNaN(parseInt("   ")));

Or

alert(isNaN(parseFloat("    ")));
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.