所述Math.floor()方法返回小于或等于給定浮點數(shù)的最大整數(shù)。
如果傳遞的參數(shù)是整數(shù),則該值將保持不變。
由于floor()是Math的靜態(tài)方法,因此您始終將其用作Math.floor(),而不是用作創(chuàng)建的Math對象的方法。
Math.floor(x)
Math.floor(3.14); // 3 Math.floor(.95);// 0 Math.floor(5); // 5 Math.floor(-18);// -18 Math.floor(-0.72); // -1測試看看?/?
所有瀏覽器都完全支持Math.floor()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
Math.floor() | 是 | 是 | 是 | 是 | 是 |
參數(shù) | 描述 |
---|---|
x | 數(shù)值 |
返回值: | 小于或等于指定數(shù)字的數(shù)字的最大整數(shù) |
---|---|
JavaScript版本: | ECMAScript 1 |