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.