# Types

### Is Null

*Returns true if a value is null.*

#### Expression:

**ISNULL**(*value*: any)

#### Return:

boolean

#### Example of usage:

```javascript
ISNULL("Are my pockets full?")

Return value:
false
```

### Is String

*Returns true if a value is a string.*

#### Expression:

**ISSTRING**(*value*: any)

#### Return:

boolean

#### Example of usage:

```javascript
ISSTRING("Phillips, tested on humans.")

Return value:
true
```

### Is Number

*Returns true if a value is a number.*

#### Expression:

**ISNUMBER**(*value*: any)

#### Return:

boolean

#### Example of usage:

```javascript
ISNUMBER(1234)

Return value:
true
```

### Is Bool

*Returns true if a value is a boolean.*

#### Expression:

ISBOOL(*value*: any)

#### Return:

boolean

#### Example of usage:

```javascript
ISBOOLEAN(true)

Return value:
true
```

### Is Object

*Returns true if a value is an object.*

#### Expression:

**ISOBJECT**(value: any)

#### Return:

boolean

#### Example of usage:

```javascript
ISOBJECT({key1: "apples", key2: "pears"})

Return value:
true
```

### Is Array

*Returns true if a value is an array.*

#### Expression:

**ISARRAY**(*value*: any)

#### Return:

boolean

#### Example of usage:

```javascript
ISARRAY([{key1: "apples"} , {key2: "pears"}])

Return value:
true
```


---

# 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://docs.adapptio.com/reference-guide/functions/types.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.
