# IsNaN

### **Description**‌

The IsNaN function returns a value indicating whether 'x' is a "not a number" value (usually originating in a null value from a database).

### **Syntax**

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

### **Returns**

‌The IsNaN function returns True or False.

### **Example**‌

Let's look at some IsNaN function examples and explore how to use the IsNaN function.‌

```
IsNaN("hello")
Result: True

IsNaN(55)
Result: False
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.novacuraflow.com/development/flowscript/functions/number-functions/isnan.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
