向下取整floor()
Posted 代码笔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向下取整floor()相关的知识,希望对你有一定的参考价值。
向下取整floor()
floor() 方法可对一个数进行向下取整。
语法:
Math.floor(x)
参数说明:
注意:返回的是小于或等于x,并且与 x 最接近的整数。
我们将在不同的数字上使用 floor() 方法,代码如下:
<script type="text/javascript"> document.write(Math.floor(0.8)+ "<br>") document.write(Math.floor(6.3)+ "<br>") document.write(Math.floor(5)+ "<br>") document.write(Math.floor(3.5)+ "<br>") document.write(Math.floor(-5.1)+ "<br>") document.write(Math.floor(-5.9)) </script>
运行结果:
0 6 5 3 -6 -6
以上是关于向下取整floor()的主要内容,如果未能解决你的问题,请参考以下文章
python 向上取整ceil 向下取整floor 四舍五入round
js的向上取整(Math.ceil)向下取整(Math.floor)四舍五入(Math.round)