JavaScript Tutorial/Number Data Type/NaN

Материал из Web эксперт
Перейти к: навигация, поиск

Number.NaN

The NaN property represents a value that is not equal to any numeric value.



<html>
    <body>
    <script language="JavaScript">
    <!--
    if(123 == Number.NaN){
         document.write("This is not a number");
    }
    -->
    </script>
    </body>
    </html>