Math.round(),Math.ceil(),Math.floor()的区别
标签:
JavaScript
1.Math.round():四舍五入
根据“round”的字面意思“附近、周围”,可以猜测该函数是求一个附近的整数,看下面几个例子就明白。
2.Math.ceil():向上取整
根据“ceil”的字面意思“天花板”去理解;
3.Math.floor():向下取整
根据“floor”的字面意思“地板”去理解;
看下面一些例子就明白了
alert(Math.ceil(25.9)); //26 alert(Math.ceil(25.5)); //26 alert(Math.ceil(25.1)); //26 alert(Math.round(25.9)); //26 alert(Math.round(25.5)); //26 alert(Math.round(25.1)); //25 alert(Math.floor(25.9)); //25 alert(Math.floor(25.5)); //25 alert(Math.floor(25.1)); //25
但需要注意的一点是,假如值是负数,结果要注意哦!
alert(Math.ceil(-25.9)); //-25 alert(Math.ceil(-25.5)); //-25 alert(Math.ceil(-25.1)); //-25 alert(Math.round(-25.9)); //-26/////////////// alert(Math.round(-25.5)); //-25 alert(Math.round(-25.1)); //-25///////////////// alert(Math.floor(-25.9)); //-26 alert(Math.floor(-25.5)); //-26 alert(Math.floor(-25.1)); //-26
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦