I have a problem with rounding float number. Here is the source code, very simple :
a = '2.3'
result = parseFloat(a) + 0.01
console.log(result)
Console displays 2.3099999999999996
instead of 2.31
You can try here : jsfiddle
Have you a solution ? Thank you in advance, cordially