Answers for "javascript division without 2 decimal places"

7

javascript convert int to float with 2 decimal places

float_num.toFixed(2);
Posted by: Guest on March-29-2020
2

how to numeric value is after point 2 values in javascript

var totalAmount = 0;
totalAmount = Number($("#sub_amount").val()) + Number($("#vat_amount").val());
totalAmount = totalAmount.toFixed(2);
$('#total_amount').val(totalAmount);
//@sujay
Posted by: Guest on October-15-2020
0

best way to round to two typescript

const roundTo = function(num: number, places: number) {
  const factor = 10 ** places;
  return Math.round(num * factor) / factor;
};

roundTo(123.456, 2);  // 123.46
roundTo(123.3210, 2);  // 123.32
roundTo(123.456, 1);  // 123.5
roundTo(123, 2);  // 123
Posted by: Guest on September-21-2020

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language