javascript中Math.floor的真正含义及用法
的有关信息介绍如下:
本文将为您讲解javascript中Math.floor的真正含义及用法
打开开发工具(以HbuildX为例),并新建一个基本HTML项目Demo01
打开index.html文件并输入
//Math
document.write(Math.floor(5.1))
document.write(Math.floor(5.2))
document.write(Math.floor(5.3))
document.write(Math.floor(5.4))
document.write(Math.floor(5.5))
document.write(Math.floor(5.6))
document.write(Math.floor(5.7))
document.write(Math.floor(5.8))
document.write(Math.floor(5.9))
注意:script标签是为了在html文件中引入JavaScript代码
之后我们预览查看效果,结果为555555555
在JavaScript中Math.floor() 方法执行的是向下取整的计算,它的返回值是最接近参数且不大于参数的整数。



