javascript 取整 取余数

丢弃小数部分,保留整数部分
parseInt(5/2)
= 2

向上取整,有小数,则整数部分加
Math.ceil(5/2)
= 3

四舍五入
Math.round(5/2)
=3

Math.round(-3.5)
=-3

Math.round(-3.6)
=-4

向下取整
Math.floor(5/2)
=2

取余数
0%4
=0

1%4
=1

2%4
=2

3%4
=3

4%4
=0

5%4
=1

原文地址:https://www.cnblogs.com/bigdesign/p/4514267.html