javascript min array 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: javascript find smallest number in an array
const arr = [14, 58, 20, 77, 66, 82, 42, 67, 42, 4]
const min = Math.min(...arr)
console.log(min)
Example 3: javascript minimum number in array
const min = arr => Math.min(...arr);
Example 4: js max value of array
let numbers = [4, 13, 27, 0, -5];
Math.max.apply(null, numbers);
Example 5: min array javascript
const nums = [1, 2, 3]
Math.min(...nums)
Math.max(...nums)
Example 6: how to return the max and min of an array in javascript
function minMax(arr) {
return [Math.min(...arr), Math.max(...arr)];
}