JavaScript Math.max()
Math 物件的 Math.max() 方法用來取得傳入所有傳入參數的最大值。
語法:
Math.max([value1[, value2[, ...]]])
用法:
Math.max(10, 20); // 20
Math.max(-10, -20); // -10
Math.max(-10, 20); // 20
Math 物件的 Math.max() 方法用來取得傳入所有傳入參數的最大值。
語法:
Math.max([value1[, value2[, ...]]])
用法:
Math.max(10, 20); // 20
Math.max(-10, -20); // -10
Math.max(-10, 20); // 20