2

I've a funny idiotic problem: Why is javascript showing that 10.2 - 17 = -6.800000000000001 ?

Found something similar here: Calculate a minus operation in javascript returns a incorrect value but I can't round the numbers.

Can I somehow fix this without specifying how many decimals to use? (I actually have some results that can have 6-7 decimals)

2

1 Answer 1

5

Floating point arithmetic is not always precise.

In particular there is no exact representation of 10.2 as a floating point value, so the nearest representable value is stored instead. This value will be very slightly different from 10.2.

The simplest way to handle it is to round the numbers to a certain number of decimal places when you display them.

Some languages have a decimal type that can represent 10.2 exactly. However:

  • Javascript has no built in type like this, so you'd have to use a third-party library.
  • Decimal floating point numbers don't solve all problems. For example the result of 0.1 / 0.3 cannot be represented exactly as a decimal. You may still need to round results to a certain number of decimal places when you display them.
Sign up to request clarification or add additional context in comments.

1 Comment

So unfortunately I need to make a check before doing the operation to see the number of resulting decimals then round the number :| this kind of sucks.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.