Is there a similar function to JavaScript's IsNaN() in VB Script?
Thanks.
Steve
Printable View
Is there a similar function to JavaScript's IsNaN() in VB Script?
Thanks.
Steve
IsNumeric() does the same job only the other way round, i.e. :
IsNumeric(53) returns true
IsNumeric("53") returns true
IsNumeric("53a") returns false
--
AS