Math.round(),Math.ceil(),Math.floor()的區(qū)別
標(biāo)簽:
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
點擊查看更多內(nèi)容
為 TA 點贊
評論
評論
共同學(xué)習(xí),寫下你的評論
評論加載中...
作者其他優(yōu)質(zhì)文章
正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦