JavaScript中取整的方法:1、通过Math.floor()向下取整;2、通过Math.ceil()向上取整;3、通过Math.round()四舍五入;4、通过parseInt()取整。

JavaScript中怎么取整?

JavaScript 取整的几种方法

Math.floor() 向下取整

1

Math.floor(3.141592654) // 3

Math.ceil() 向上取整

1

Math.ceil(3.141592654) // 4

Math.round() 四舍五入

1

Math.round(3.141592654) // 3

parseInt() 去掉小数点和小数点后的部分

1

parseInt(3.141592654) // 3

~~ 将数据转化为Number类型

1

~~3.141592654 // 3