1、四舍五入取整
Math.round(5/2) // 3
2、直接去掉小数,取整
parseInt(5/2); // 2
3、向上取整,有小数整数部分就加1
Math.ceil(1/3) // 1
4、向下取整
Math.floor(1/3) // 0