vote up 0 vote down star
1

Possible Duplicates:
Strange problem comparing floats in objective-C
Is JavaScript’s math broken?
1.265 * 10000 = 126499.99999999999 ?????

After watching this I discovered that in JavaScript:

0.1 + 0.2 === 0.3

evaluates to false.

Is there a way to work around this?

flag

3  
docs.sun.com/source/806-3568/… – nlucaroni Nov 4 at 17:55
1  
This has been asked many times over: stackoverflow.com/search?q=javascript+floating+po… – Matt Baker Nov 4 at 18:15
Sorry about the repeat. – camomileCase Nov 4 at 18:34

closed as exact duplicate by nlucaroni, Ken White, ShreevatsaR, mjv, sth Nov 5 at 6:16

7 Answers

vote up 1 vote down check

How about

function isEqual(a, b)
{
  tol = 0.01; // tunable 
  return Math.abs(a - b) < tol;
}
link|flag
vote up 3 vote down

The best and only answer I have found that provides accurate results is to use a Decimal library. The BigDecimal java class has been ported to javascript, see my answer in this SO post.

Note: Scaling values will "treat" the issue but will not "cure" it.

link|flag
vote up 2 vote down

You can of course multiply each number like

10 * 0.1 + 10 * 0.2 === 10 * 0.3

which evaluates to true.

link|flag
vote up 1 vote down

Just an idea. Multiply 10000 (or some similarly big number as long as its more than your max number of decimals) to all your values before you compare them, that why they will be integers.

function padFloat( val ) {
  return val * 10000;
}

padFloat( 0.1 ) + padFloat( 0.2 ) === padFloat( 0.3 );
link|flag
vote up 1 vote down

This is a problem inherent in binary numbers that hits all major programming languages.

Convert decimal .1 (1/10) to binary by hand - you'll find it has a repeating mantissa and can't be represented exactly. Like trying to represent 1/3 as a decimal.

link|flag
The problem is with binary floating point, not binary numbers in general. There are decimal floating point libraries out there (though not sure about in JS) that avoid this problem. – ScottJ Nov 4 at 19:21
No, it's a problem with binary numbers. You can't represent .1 as a natural binary number. "decimal" libraries get around it by representing decimal digits or by using fixed-point decimals. – Joel Coehoorn Nov 4 at 19:39
OK, true. What I should have said is that this problem does not affect binary integers. – ScottJ Nov 5 at 20:05
vote up 0 vote down

Use fixed-point math (read: integers) to do math where you care about that kind of precision. Otherwise write a function that compares your numbers within a range that you can accept as being "close enough" to equal.

link|flag
vote up 1 vote down

You should always compare floating point numbers by using a constant (normally called epsilon) to determine much can two numbers differ to be considered "equal".

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.