Math.round(),Math.ceil(),Math.floor

fondtiger發表於2021-09-09

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


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2508/viewspace-2804453/,如需轉載,請註明出處,否則將追究法律責任。