Hi,
is there a better way to multiply and divide figures than using the *
and /
?
There is a strange behavior in Chrome Firefox and Internet Explorer using those operaters:
x1 = 9999.8
x1 * 100 = 999979.9999999999
x1 * 100 / 100 = 9999.8
x1 / 100 = 99.99799999999999
I am trying to round down the user input with parseInt ( x1 * 100 ) / 100
and the result for 9999.8
is 9999.79
Should I use another way to achieve this?