当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript max()方法
The max() method returns the number with the highest value of two specified numbers.
max() 方法可以返回出指定两数中比较大的那个数
Math.max(x,y) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必选。数字 |
y | Required. A number 必选。数字 |
In this example we will show how to use max() to return the number with the highest value of two specified numbers:
在这个举例中我们将展示如何使用max()来返回两个指定数字中比较大的一个:
<script type="text/javascript"> document.write(Math.max(5,7) + "<br />") </script> |
The output of the code above will be:
输出结果为:
7 |
max()
How to use max() to return the number with the highest value of two specified numbers.
如何使用max() 方法返回出指定两数中比较大的那个数