1
.直接丢弃小数部分,保留整数部分
a:parseInt(1.5555
)
b: 0|1.5555
2
.向上取整
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)
转载于:https://www.cnblogs.com/foreverfendou/p/5127103.html
相关资源:javascript 小数取整简单实现方式