js get min and max values of array code example
Example 1: how to return the max and min of an array in javascript
function minMax(arr) {
return [Math.min(...arr), Math.max(...arr)];
}
Example 2: javascript math min array
const nums = [1, 2, 3]Math.min(...nums) // 1Math.max(...nums) // 3