1. 程式人生 > >js 中的 Math.ceil() Math.floor Math.round()

js 中的 Math.ceil() Math.floor Math.round()

blog style round floor 否則 nbsp color mat math

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

對於所有介於25和26(不包括26)之間的數值,Math.ceil()始終返回26,因為它執行的是向上舍入。

Math.round()方法只在數值大於等於25.5時返回26;否則返回25。

最後,Math.floor()對所有介於25和26(不包括26)之間的數值都返回25。

js 中的 Math.ceil() Math.floor Math.round()