js中小数转换整数的方法有很多,有下退、上进、四舍五入等等,需要的朋友可以了解下本文
JS小数转为整数 floor:下退 Math.floor(12.9999) = 12 ceil:上进 Math.ceil(12.1) = 13; round: 四舍五入 Math.round(12.5) = 13 Math.round(12.4) = 12
时间: 2024-10-26 02:13:46
js中小数转换整数的方法有很多,有下退、上进、四舍五入等等,需要的朋友可以了解下本文
JS小数转为整数 floor:下退 Math.floor(12.9999) = 12 ceil:上进 Math.ceil(12.1) = 13; round: 四舍五入 Math.round(12.5) = 13 Math.round(12.4) = 12