獲得最大和最小
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