JavaScript 数値の小数点第2位を四捨五入するサンプル
環境
Google Chrome 118.0.5993.89(Official Build) (64 ビット)
Windows 11 Pro 64bit
構文
const 変数名 = Math.round(数値 * 10) / 10
Math.round()の引数に、数値を10倍した値を指定します。
Math.round()の結果を10で割ります。
使用例
var ns = 4.521; var ns2 = 6.8861; var ns3 = 7.25749; const res = Math.round(ns * 10) / 10 const res2 = Math.round(ns2 * 10) / 10 const res3 = Math.round(ns3 * 10) / 10 console.log(res) console.log(res2) console.log(res3)
実行結果
4.5
6.9
7.3