how to find min value in array javascript code example

Example 1: javascript minimum number in array

const min = arr => Math.min(...arr);

Example 2: javascript index of min value in array

arr = [11, 10, 10];
var index = arr.indexOf(Math.max(...arr));

Example 3: how to return the max and min of an array in javascript

function minMax(arr) {
  return [Math.min(...arr), Math.max(...arr)];
}

Example 4: javascript find the min in array of numbers

// Assuming the array is all integers,
// Math.min works as long as you use the spread operator(...).

let arrayOfIntegers = [9, 4, 5, 6, 3];
let min = Math.min(...arrayOfIntegers);
// => 3

Tags:

Java Example