获得最大和最小

Math.max() 函数返回零个或多个数字中的最大值。

Math.max(4, 12);   //  12
Math.max(-1, -15); // -1

Math.min() 函数返回零或更多数字中的最小值。

Math.min(4, 12);   //  4
Math.min(-1, -15); // -15

从数组中获取最大值和最小值:

var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9],
    max = Math.max.apply(Math, arr),
    min = Math.min.apply(Math, arr);

console.log(max); // Logs: 9
console.log(min); // Logs: 1

ECMAScript 6 扩展运算符 ,获取数组的最大值和最小值:

var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9],
    max = Math.max(...arr),
    min = Math.min(...arr);

console.log(max); // Logs: 9
console.log(min); // Logs: 1