IsNaN
This Flow Script tutorial explains how to use the IsNaN function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the IsNaN function with syntax and examples.
The IsNaN function returns a value indicating whether 'x' is a "not a number" value (usually originating in a null value from a database).
The syntax for the IsNaN function is:
IsNaN(x)
Parameters
x - the value that is to be checked if it is a number or not.
The IsNaN function returns True or False.
Let's look at some IsNaN function examples and explore how to use the IsNaN function.
IsNaN("hello")
Result: True
IsNaN(55)
Result: FalseLast updated
Was this helpful?
Was this helpful?