I add this floating numbers in javascript,
1403.07+1000.00
result is 2403.0699999999997
It should be 2403.07
I got a work around (1403.07+1000.00).toFixed(2), but this will fail if precision changes meaning; it will fail for addition of 1403.072+1000.01.
Is there any way I can achieve by jQuery/Javascipt, i dont need external library.