当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript floor()方法
The floor() method returns the value of a number rounded DOWNWARDS to the nearest integer.
floor()方法可用来返回由参数x 指定的数字或表达式的下限值
Math.floor(x) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必选。数字 |
In this example we will use the floor() method on different numbers:
这个举例中我们将对不同的数字使用floor()方法:
<script type="text/javascript"> document.write(Math.floor(0.60) + "<br />") </script> |
The output of the code above will be:
输出结果为:
0 |
floor()
How to use floor().
怎样使用floor().