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