如何在JavaScript中找到给定小数或其他数字的整数?

给定结果
----- ------
1.2 1

1.5 1

1.9 1

对正数和负数执行此操作的最佳方法是什么?

最佳答案

使用Math.floor:

Math.floor(number)

关于javascript - 查找数字的整数部分,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1258790/

10-10 19:30