3

i want to format a number to max of 2 decimals in javascript. i see that there is:

toFixed(2)

but this seems like it would ALWAYS do 2 decimals. i want something that would take: 100.1223334 and convert it to 100.12 but i want this function to convert 100.5 to just 100.5 (since < 2 decimal digits)

whats is the best way of doing this in javascript.

leora
  • 188,729
  • 360
  • 878
  • 1,366

2 Answers2

5

Use Math.round(number * 100) / 100.

For example, 100.1223 becomes 10012.23, which is rounded to the nearest integer (10012) and then divided by 100 to get 100.12.

PleaseStand
  • 31,641
  • 6
  • 68
  • 95
0

Use Math.round(number). This will round off the number to maximum 2 decimals.

Sang Suantak
  • 5,213
  • 1
  • 27
  • 46