minimum index(items)index of lowest Type: For any types t where Comparable t([t]) -> Number

Gets the index of the lowest item in the list (where the first item is index 1, the second is index 2 and so on).

Lowest is determined in the same way as operator < -- see the documentation for more details.

ExamplesClick an example to insert it
minimum index([54, 82, -7])3
minimum index(["cat", "aardvark", "bear"])2
minimum index([])error
See Alsominimum(..)maximum index(..)