min from array javascript 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) // 1
Math.max(...nums) // 3
Example 3: javascript math min array
const nums = [1, 2, 3]Math.min(...nums) // 1Math.max(...nums) // 3
Example 4: Math max with array js
var nums = [1, 2, 3]
Math.min.apply(Math, nums) // 1
Math.max.apply(Math, nums) // 3
Math.min.apply(null, nums) // 1
Math.max.apply(null, nums) // 3