当前位置:主页 > 网页前端 > JavaScript代码 >

js中小数转换整数的方法

时间:2021-08-07 08:43:35 | 栏目:JavaScript代码 | 点击:

JS小数转为整数 floor:下退 Math.floor(12.9999) = 12 ceil:上进 Math.ceil(12.1) = 13; round: 四舍五入 Math.round(12.5) = 13 Math.round(12.4) = 12

您可能感兴趣的文章:

相关文章