JavaScript Round Decimal 2 dígitos
var numb = 123.23454;
numb = numb.toFixed(2);
Strange Snake
var numb = 123.23454;
numb = numb.toFixed(2);
var subTotal="12.1345";// can also be int, float, string
var subTotalFormatted=parseFloat(subTotal).toFixed(2); //"12.13"
var num = 2;
var roundedString = num.toFixed(2);// 2.00
(Math.round(number * 100)/100).toFixed(2);
var num = 125465.33695;
console.log(num.toFixed(2)) //125465.33
Math.round((num + Number.EPSILON) * 100) / 100