数値に最も近い整数を計算します。
例えば、round(133.8)
は値134を返します。
2番目のパラメータdecimals
はオプションです。これは四捨五入する際の 小数点以下の桁数を設定します。例えば、round(12.34, 1)
は 12.3を返します。decimals
のデフォルト値は0です。
実例
シンタックス
round(n, [decimals])
パラメーター
n
Number:
四捨五入する数値。
decimals
Number:
四捨五入する小数点以下の桁数、デフォルトは0。
リターン
Integer: 四捨五入された数値。
Notice any errors or typos? Please let us know. Please feel free to edit src/math/calculation.js and open a pull request!