Home Javascript How to check if a value is a number or not a number using JavaScript?
 
 
 

How to check if a value is a number or not a number using JavaScript?

PDF Print E-mail

Question: How to check if a value is a number or not a number using JavaScript?

 

Answer: By using the isNaN() JavaScript function. isNaN = Is Not A Number


Examples
:

document.write(isNaN("Hello World!")); //Will print true since Hello World! is not a number
document.write(isNaN(123456)); //Will print false, since 123456 is a number.

var phoneNumber = 0724956785234;
if(isNaN(phoneNumber) == true){
                alert("Please enter a valid phone number");
                return false;
 }

 

 

 

+/-
+/- Write comment
Your Contact Details:
Comment:
[b] [i] [u] [url] [quote] [code] [img]   
:angry::0:confused::cheer:B):evil::silly::dry::lol::kiss::D:pinch:
:(:shock::X:side::):P:unsure::woohoo::huh::whistle:;):s
:!::?::idea::arrow:
Security Please input the anti-spam code that you can read in the image.
 
 
Banner