# findIndex

## Description

It searches for a specific element in an array and returns the index of the first occurrence of that element. If the element is not found, it returns -1.

## Input / Parameter

| Name   | Description                                       | Input Type | Default | Options | Required |
| ------ | ------------------------------------------------- | ---------- | ------- | ------- | -------- |
| string | The array/list where in the search would be done. | Array/List | -       | -       | Yes      |
| find   | The value to find in the array/list.              | Any        | -       | -       | Yes      |

## Output

| Description                                                                   | Output Type |
| ----------------------------------------------------------------------------- | ----------- |
| Returns the index of the first occurrence and if it not found, it returns -1. | Number      |

## Callback

N/A

## Video

Coming soon.

## Example

The user wants to get the index of character "H" in a passed string.<br>

### Step

1. Call the function `console`. Call the function `findIndex` inside the `value` parameter of the `console` function.\
   string: aBcDeFgHiJ\
   find: H

   ![](/files/ORSMCEfB3m01xz5IGywt)

   ![](/files/1tnBSdoadhmQNkmRMJbK)

### Result

The console should return '7', the index of 'H' in the string.

## Links


---

# 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.emobiq.com/emobiq-client/006-actions-and-visual-logic/action-reference/cordova/string/findindex.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.
