javascript中floor使用方法总结

在本篇文章中小编给大家分享了关于javascript中floor使用的知识点内容,有兴趣的朋友们学习下。

floor()方法的基本语法

Math.floor( x ) ;

x表示数字,返回小于或等于数字x的最大整数。

我们下面来看具体的示例

代码如下

<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script type="text/javascript"> document.write(Math.floor(-2)+"<br/>"); document.write(Math.floor(-2.56)+"<br/>"); document.write(Math.floor(2.56)+"<br/>"); document.write(Math.floor(7.2+9.3)); </script> </body> </html>

浏览器上运行效果如下:所有数字的输出都会小于或等于其最大整数。

javascript中floor使用方法总结

以上就是本篇关于floor知识点的全部内容,感谢大家对脚本之家的支持。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/8f3f1ea9cf85a30a8526871847cf2e12.html