I have a problem with rounding float number. Here 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 : https://jsfiddle.net/fh9bj83u/
Have you a solution ?
Thank you in advance, cordially