Answers for "howt to round of 2 places js"

11

javascript round to 2 decimal places

var subTotal="12.1345";// can also be int, float, string
var subTotalFormatted=parseFloat(subTotal).toFixed(2); //"12.13"
Posted by: Guest on July-22-2019
0

javascript round to 2 decimals

var num = 125465.33695;
console.log(num.toFixed(2)) //125465.33
Posted by: Guest on June-19-2021

Code answers related to "howt to round of 2 places js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language