I am pulling a value via JavaScript from a textbox. If the textbox is empty, it returns NaN. I want to return an empty string if it’s null, empty, etc.
What check do I do? if(NAN = tb.value)?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hm, something is fishy here.
In what browser does an empty textbox return NaN? I’ve never seen that happen, and I cannot reproduce it.
The value of a text box is, in fact a string. An empty text box returns an empty string!
Oh, and to check if something is NaN, you should use:
Note: The
isNaN()-function returnstruefor anything that cannot be parsed as a number, except for empty strings. That means it’s a good check for numeric input (much easier than regexes):