Answers for "float with 2 decimal places typescript"

24

javascript round decimal 2 digits

var numb = 123.23454;
numb = numb.toFixed(2);
Posted by: Guest on February-26-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 "float with 2 decimal places typescript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language