# INDEXOF

Returns the index of the first occurrence of an input number in an array of numbers. Node references are also accepted as arguments. The function returns 0 if the value is not found in the input array.

## Syntax

```javascript
indexof(list, value)
```

## Arguments

list - The input array of numbers to be checked.

value - The number to be searched for in the list.

## Example

```javascript
INDEXOF([2,4,6,8,10],8)
```

Returns 4.

```
INDEXOF([2,4,6,8,10],2)
```

Returns 1.

In the example below, the Indexof function is used to check whether the Revenue in any quarter is equal to the Sales for Q1.&#x20;


---

# 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.inforiver.com/premium-table/formula-syntax/math-functions/indexof.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.
