Math.floor(),其中Math是JavaScript的一个对象,floor是Math的属性。Math.floor()可以获得一个数的整数部分,而不是四舍五入,这在编程中比较常用,比如要使用JavaScript制作一条虚线。
用法实例:
<script>
document.write(Math.floor(400.0244))
</script>
运行结果是400。
<script>
document.write(Math.floor(3.8))
</script>
运行结果是3。