下麵是Math max()方法的示例。
- 例:
<script type="text/javascript"> document.write("When positive numbers are passed"+ " as parameters:" + Math.max(10, 32, 2)); </script>
- 輸出:
When positive numbers are passed as parameters:32
Math.max()方法用於返回零個或多個數字中的最大值。如果沒有傳遞任何參數,則結果為“-Infinity”,如果至少一個參數不能轉換為數字,則結果為NaN。
max()是Math的靜態方法,因此,它始終用作Math.max(),而不是用作創建的Math對象的方法。
用法:
Math.max(value1, value2, ...)
參數:此方法接受ingle參數,該參數如上所述可以使用n次,如下所述:
- value:該值發送到math.max()方法中以查找最大值。
返回線索:Math.max()方法返回最大的給定數字。
以下示例說明了JavaScript中的Math max()方法:
- 範例1:
Input:Math.max(10, 32, 2) Output:32
- 範例2:
Input:Math.max(-10, -32, -1) Output:-1
- 範例3:
Input:Math.max() Output:-Infinity
- 範例4:
Input:Math.max(10,2,NaN) Output:NaN
上述方法的更多代碼如下:
程序1:當傳遞負數作為參數時。
<script type="text/javascript">
document.write("Result:" + Math.max(-10, -32, -1));
</script>
輸出:
Result:-1
程序2:沒有參數傳遞時。
<script type="text/javascript">
document.write("Result:" + Math.max());
</script>
輸出:
Result:-Infinity
程序:當NaN作為參數傳遞時。
<script type="text/javascript">
document.write("Result:" + Math.max(10,2,NaN));
</script>
輸出:
Result:NaN
支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math random()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math exp()用法及代碼示例
- JavaScript Math log()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math min()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 JavaScript Math max() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。