JavaScript isNaN() Function
Complete Function Reference
Definition and Usage
The isNaN() function is used to check if a value is not a number.
Syntax
| Parameter |
Description |
| number |
Required. The value to be tested |
Example
In this example we use isNaN() to check some values:
<script type="text/javascript">
document.write(isNaN(123)+ "<br />");
document.write(isNaN(-1.23)+ "<br />");
document.write(isNaN(5-2)+ "<br />");
document.write(isNaN(0)+ "<br />");
document.write(isNaN("Hello")+ "<br />");
document.write(isNaN("2005/12/12")+ "<br />");
</script>
|
The output of the code above will be:
false
false
false
false
true
true
|
Try it yourself »
|
Complete Function Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|