toFixed

toFixedは、指定した小数点の位になるように四捨五入します。

toFixedに関しての説明図
var num = 123.456;

console.log("四捨五入の値[toFixed(1)] : " + num.toFixed(1));
console.log("四捨五入の値[toFixed(2)] : " + num.toFixed(2));
console.log("四捨五入の値[toFixed(3)] : " + num.toFixed(3));
出力結果

四捨五入の値[toFixed(1)] : 123.5
四捨五入の値[toFixed(2)] : 123.46
四捨五入の値[toFixed(3)] : 123.456