javascript get min value in array code example

Example 1: javascript min max array

Math.max(1, 2, 3)    // 3
Math.min(1, 2, 3)    // 1

var nums = [1, 2, 3]
Math.min(...nums)    // 1
Math.max(...nums)    // 3

Example 2: javascript minimum number in array

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

Example 3: Find the maximum number of an array js

function getMaxOfArray(numArray) {
    return Math.max.apply(null, numArray);
}

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