JavaScript Reference/Javascript Methods/isNaN — различия между версиями

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

Текущая версия на 08:22, 26 мая 2010

"isNaN()" Example

    
<html>
<body>
<button onclick="alert(isNaN("12.34"));">isNaN False</button>
<button onclick="alert(isNaN("Hello"));">isNaN True</button>
</body>
</html>



"isNaN()" Syntax, Parameters and Note

Note:
Is the specified string NOT numeric. 
Returns true or false.
    
Syntax:
    
isNaN(param1)
Parameters:
    param1   Required; the string to be evaluated.