'isNaN()' Syntax, Parameters and Note : isNaN « Javascript Methods « JavaScript Reference

'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.

    

      
      








Related examples in the same category

1.'isNaN()' Example