Answers for "javascript 2 decimal places without rounding"

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
1

round decimal js

Math.round(num * 100) / 100
Posted by: Guest on March-17-2021
1

javascript round to 7 decimal places

myNumber.toFixed(7);
Posted by: Guest on February-29-2020
0

javascript truncate decimal without rounding

// truncate function
// in this example the default value is 2
function truncate(number, index = 2) {
  	// cutting the number
    return +number.toString().slice(0, (number.toString().indexOf(".")) + (index + 1));
}

// example
console.log(truncate(1234.56789, 3)); // 1234.567
Posted by: Guest on June-14-2021

Code answers related to "javascript 2 decimal places without rounding"

Code answers related to "Javascript"

Browse Popular Code Answers by Language