JavaScript里四舍五入函數(shù)round的用法實例
本文實例講述了JavaScript里四舍五入函數(shù)round用法。分享給大家供大家參考。具體如下:
JavaScript的Math對象包含了一個round方法用于對數(shù)字進行四舍五入操作,下面的.代碼詳細(xì)演示了其用法
Click the button to round the number 2.5 to its nearest integer.
Try it
function myFunction(){document.getElementById("demo").innerHTML=Math.round(2.5);}
希望本文所述對大家的javascript程序設(shè)計有所幫助。
【JavaScript里四舍五入函數(shù)round的用法實例】相關(guān)文章:
4.javascript中的match函數(shù)用法簡介
6.JavaScript中用于四舍五入的Math.round方法講解