Returns the index of the smallest value.
const v = [ 10, 40, 5 ];Numbers.minIndex(v); // Yields 2 Copy
const v = [ 10, 40, 5 ];Numbers.minIndex(v); // Yields 2
Array of numbers
Index of smallest value
Returns the index of the smallest value.