find min in array js code example
Example 1: javascript minimum number in array
const min = arr => Math.min(...arr);
Example 2: min array javascript
const nums = [1, 2, 3]
Math.min(...nums)
Math.max(...nums)
Example 3: js max array
Math.max(...array);
Example 4: how to return the max and min of an array in javascript
function minMax(arr) {
return [Math.min(...arr), Math.max(...arr)];
}
Example 5: javascript find the min in array of numbers
let arrayOfIntegers = [9, 4, 5, 6, 3];
let min = Math.min(...arrayOfIntegers);
Example 6: javascript math min array
const nums = [1, 2, 3]Math.min(...nums)