取整 取余函数

1、取整

1>

丢弃小数部分 保留整数部分  

parseInt(5/2)

//2.5

2>

向上取整

Math.ceil(5/2)

//3

3>

向下取整

Math.floor(5/2)

//2

4>

四舍五入

Math.round(5/2)

//3

2、取余

5 % 2

//0.5

 

 

你可能感兴趣的:(js)