美文网首页
Javascript Math ceil()、floor()、r

Javascript Math ceil()、floor()、r

作者: 6659a0f02826 | 来源:发表于2017-11-21 16:11 被阅读35次

    round是四舍五入的,ceiling是向上取整,float是向下取整

    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
    

    相关文章

      网友评论

          本文标题:Javascript Math ceil()、floor()、r

          本文链接:https://www.haomeiwen.com/subject/qrewvxtx.html