Probably this question is already existed somewhere but can't find my specific issue.
I have a two numbers that I want to add and I don't want to use round() function since I am working with money.
1.70 + 1.44 = 3.14 //Returns 3.1399999999999997
1.70 + 1.45 = 3.15 //Returns the correct answer
1.70 + 1.37 = 3.07 //Returns 3.0700000000000003
I tried it in Javascript but still the same issue.