public native indexOf(item as T, start as Int = 0) as Int
Returns the first index of the given element.
| Parameter | Description |
|---|---|
item | The element to search for. |
start | Zero-based index where the search starts. |
The first matching index, or -1.
data = ls:[10, 20, 10] print(data.indexOf(10, 1)) # 2