浮动到整数

要将 float 转换为整数,JavaScript 提供了多种方法。

floor 函数返回小于或等于 float 的第一个整数。

Math.floor(5.7); // 5

ceil 函数返回大于或等于 float 的第一个整数。

Math.ceil(5.3); // 6

round 函数围绕浮点数。

Math.round(3.2); // 3
Math.round(3.6); // 4

Version >= 6

截断(trunc)从 float 中删除小数。

Math.trunc(3.7); // 3

注意截断(trunc)和 floor 之间的区别:

Math.floor(-3.1); // -4
Math.trunc(-3.1); // -3