Math.ceil(x) -- 数値パラメータ以上の最小の整数 (丸め関数) を返し、数値を切り上げます
ceil は Ceiling の略で、「上限」を意味します" 中国語
参考URL: http://www.dreamdu.com/javascript/Math.ceil/
ceil関数の構文
Math .ceil(x);
ceil 関数パラメータ
x -- 型数値
ceil 関数戻り値
(-5.99)) 以上の最小の整数を返します。
document.write(Math.ceil(1.01));
document.write(Math.ceil(-1.01) )); 結果:
6
-5
2
-1