array min and max javascript code example
Example 1: javascript min max array
Math.max(1, 2, 3)
Math.min(1, 2, 3)
var nums = [1, 2, 3]
Math.min(...nums)
Math.max(...nums)
Example 2: max value in array javascript
const arr = [1, 5, 3, 5, 2];
const max = arr.reduce((a, b) => { return Math.max(a, b) });
const max = Math.max.apply(null, arr);
const max = 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)];
}