Math.round()、Math.ceir()、Math.flor()の違い
2394 ワード
round()方法は、1つの数字を最も近い整数に切り捨てることができる.基本的な四捨五入です.
document.write(Math.round(0.49))
:0
document.write(Math.round(0.60))
:1
document.write(Math.round(-5.1))
:-5
document.write(Math.round(-5.6))
:-6
ceil()方法は、1つの数を切り捨ててもよい.返し値はxに等しい値より大きく、それに最も近い整数です.
document.write(Math.ceil(0.10))
:1
document.write(Math.ceil(0.60))
:1
document.write(Math.ceil(-5.1))
:-5
document.write(Math.ceil(-5.9))
:-5
flor()メソッドは、下に整理して計算します.は、関数パラメータより小さいか等しい整数を返します.document.write(Math.floor(0.10))
:0
document.write(Math.floor(0.60))
:0
document.write(Math.floor(-5.1))
:-6
document.write(Math.floor(-5.6))
:-6