<script language="JavaScript"> document.write( Math.floor(0.35) + "<br />" ); document.write( Math.floor(10) + "<br />" ); document.write( Math.floor(-10) + "<br />" ); document.write( Math.floor(-10.1) ); </script>
运行该例子,输出:
0 10 -10 -11
如果参数 x 是一个涉及浮点数的表达式,那么由于计算机的固有原理,可能导致表达式应用 Math.floor 方法后结果不准确(不符合常理),具体参考《Math.floor 方法》一文中的相关描述。