1.直接丢弃小数部分,保留整数部分
a:parseInt(1.5555)
b: 0|1.5555
a: Math.ceil(1.5555)
b: (1.5555+0.5).toFixed(0)
c: Math.round(1.5555+0.5)
3.向下取整
a: Math.floor(1.5555)
b: (1.5555-0.5).toFixed(0)
c:Math.round(1.5555-0.5)
4.四舍五入.
b:1.5555.toFixed(0)
c:Math.round(1.5555)