javascript min function 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: min array javascript
const nums = [1, 2, 3]
Math.min(...nums) // 1
Math.max(...nums) // 3
Example 3: javascript math min array
const nums = [1, 2, 3]Math.min(...nums) // 1Math.max(...nums) // 3