📅  最后修改于: 2023-12-03 15:31:37.814000             🧑  作者: Mango
Math.floor()
方法返回一个小于或等于指定数字的最大整数。
Math.floor(x)
x
: 必需。要返回最大整数的数字。Math.floor()
返回小于或等于指定数字的最大整数。Math.floor(4.6); // 4
Math.floor(4.3); // 4
Math.floor(9.9); // 9
Math.floor(-4.6); // -5
Math.floor(-4.3); // -5
总之,Math.floor()
方法的作用就是对一个数字向下取整。
`Math.floor()` 方法返回一个小于或等于指定数字的最大整数。
Math.floor(4.6); // 4
Math.floor(4.3); // 4
Math.floor(9.9); // 9
Math.floor(-4.6); // -5
Math.floor(-4.3); // -5