javascript custom max versus Math.max code example
Example 1: 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 2: 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