JavaScript Math.floor()

Math 物件的 Math.floor() 方法用來對數字做無條件捨去,會返回小於等於傳入參數的最大整數值。

語法:

Math.floor(x)

用法:

Math.floor( 45.95); //  45
Math.floor( 45.05); //  45
Math.floor(  4   ); //   4
Math.floor(-45.05); // -46 
Math.floor(-45.95); // -46