JavaScript Math.truncで小数点以下を切り捨てる

環境
Google Chrome  115.0.5790.171(Official Build) (64 ビット)
Windows 11 Pro 64bit

構文
Math.trunc(x)
Math.trunc() 関数は、引数として与えた数の小数部の桁を取り除くことによって整数部を返します。

使用例

const a = 2.4;
const b = 3.9999;

console.log( Math.trunc( a ) );
console.log( Math.trunc( b ) );

実行結果
> 2
> 3

JavaScript

Posted by arkgame