为了账号安全,请及时绑定邮箱和手机立即绑定

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 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消