Math max with array js code example
Example 1: javascript minimum number in array
const min = arr => Math.min(...arr);
Example 2: javascript max array
var values = [3, 5, 6, 1, 4];
var max_value = Math.max(...values); //6
var min_value = Math.min(...values); //1
Example 3: 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