sortedIndexOf
arrayThis method is like indexOf except that it performs a binary search on a sorted array.
Signature
sortedIndexOf<T>(array: T[], value: T): numberParameters
| Name | Type | Description |
|---|---|---|
array | T[] | The sorted array to inspect |
value | T | The value to search for |
Returns
number - Returns the index of the matched value, else -1
Examples
Binary search
import { sortedIndexOf } from 'dashlite'
const result = sortedIndexOf([4, 5, 5, 5, 6], 5)
console.log(result)Output:
1Available since version 1.0.0