JavaScript floor() 方法

定义和用法

floor() 方法可对一个数进行下舍入。

语法

  1. Math.floor(x)
参数 描述
x 必需。任意数值或表达式。

返回值

小于等于 x,且与 x 最接近的整数。

说明

floor() 方法执行的是向下取整计算,它返回的是小于或等于函数参数,并且与之最接近的整数。

实例

在本例中,我们将在不同的数字上使用 floor() 方法:

  1. <script type="text/javascript">
  2.  
  3. document.write(Math.floor(0.60) + "<br />")
  4. document.write(Math.floor(0.40) + "<br />")
  5. document.write(Math.floor(5) + "<br />")
  6. document.write(Math.floor(5.1) + "<br />")
  7. document.write(Math.floor(-5.1) + "<br />")
  8. document.write(Math.floor(-5.9))
  9.  
  10. </script>

输出:

  1. 0
  2. 0
  3. 5
  4. 5
  5. -6
  6. -6