JavaScript Math.max 方法
Math.max 方法用于取得多个数中的最大数。语法如下:
Math.max( x1, x2 ,x3 ...)
参数 | 说明 |
---|---|
x1,x2,x3... | 需要比较的数值或数值序列。 |
提示
- 如果没有参数,则返回 -Infinity
- 如果参数中有 NaN 或不能转换成数值的非数字值,则返回 NaN
- 此方法与 Math.min 方法正好相反
Math.max 方法实例
<script language="JavaScript"> document.write( Math.max() + "<br />" ); document.write( Math.min(1,'h') + "<br />" ); document.write( Math.max(10,3,-20) ); </script>
运行该例子,输出:
-Infinity NaN 10
参考阅读
- JavaScript Math.min 方法:得到多个数中的最小数
- PHP max 函数:得到多个数中的最大数