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.
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.