let a = 1.2
let b = 1.5
let c = 1.8
1、ceil()
:将小数部分一律取整,向整数位进位 // 向上取整
Math.ceil(a) // 2
Math.ceil(b) // 2
Math.ceil(c) // 2
2、floor()
:将小数部分舍去 // 向下取整
Math.floor(a) // 1
Math.floor(b) // 1
Math.floor(c) // 1
3、round()
:四舍五入
Math.round(a) // 1
Math.round(b) // 2
Math.round(c) // 2
网友评论