「JavaScript」Math.ceil関数で少数部分を切り上げるサンプル

書式
Math.ceil() 関数は、引数として与えた数以上の最小の整数を返します。
Math.ceil(x)
戻り値 引数として与えた数以上の最小の整数を返します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
console.log(Math.ceil(0.65));
console.log(Math.ceil(4));
console.log(Math.ceil(9.024));
console.log(Math.ceil(-8.004));
console.log(Math.ceil(0.65)); console.log(Math.ceil(4)); console.log(Math.ceil(9.024)); console.log(Math.ceil(-8.004));
console.log(Math.ceil(0.65));

console.log(Math.ceil(4));

console.log(Math.ceil(9.024));

console.log(Math.ceil(-8.004));

実行結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
1
4
10
-8
1 4 10 -8
1
4
10
-8

 

JavaScript

Posted by arkgame