JavaScript: The Definitive Guide, 4th Edition中對Math.ceil(),Math.floor()與Math.round()三個函數的定義。ide
ceil() 方法可對一個數進行上舍入。函數
參數必須是一個數值。返回值大於等於 x,而且與它最接近的整數。ui
floor() 方法可對一個數進行下舍入。code
參數能夠是任意數值或表達式。返回值小於等於 x,且與 x 最接近的整數。ip
round() 方法可把一個數字舍入爲最接近的整數it
參數必須是一個數值。返回值與 x 最接近的整數。io
document.writeln("Math.ceil(4.8992303)輸出結果:"+Math.ceil(4.8992303)+"<br/>"); document.writeln("Math.floor(4.8992303)輸出結果:"+Math.floor(4.8992303)+"<br/>"); document.writeln("Math.round(4.8992303)輸出結果:"+Math.round(4.8992303)+"<br/><br/>"); document.writeln("Math.ceil(4.29993354)輸出結果:"+Math.ceil(4.29993354)+"<br/>"); document.writeln("Math.floor(4.29993354)輸出結果:"+Math.floor(4.29993354)+"<br/>"); document.writeln("Math.round(4.29993354)輸出結果:"+Math.round(4.29993354));