Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to deal with JavaScript values such as 23.45, but I want to be able to do mathematical operations on these values (addition, subtraction, multiplication, division) without running into floating point issues. Yes, I might need to round the results sometimes, but I would like it to give reasonable answers.

Consider this in javascript:

24.56 * .3

Yields

7.36799999999

I would like it to come out with 7.368.

Most languages have either a decimal or currency data type to deal with this. Has anyone built a class that can handle this sort of data effectively, or is there any other solution for dealing with these sorts of numbers without having to constantly adjust for floating point errors?

share|improve this question

3 Answers

up vote 6 down vote accepted

Integers.

There is no need to use floating-point for currency. Use fixed-point, where the number of decimal points is 0.

You count in pennies (or possibly in tenths of pennies).

share|improve this answer
This is helpful. However, I was hoping someone had already done the grunt work of creating some kind of class/framework for dealing with such a pseudo-decimal representation using integers. – Jeff Davis May 11 '11 at 16:31
1  
@Jeff: They did. They lived thousands of years ago and they discovered how to multiply by 100. – Lightness Races in Orbit May 11 '11 at 16:32
The question is about javascript. JS don't have integers, everything is doubles. stackoverflow.com/a/3605946/446536 – geon Sep 21 '12 at 14:06
@geon: Regardless, if you pack only whole-number values into a double then you do not get these accuracy problems. That is to say, the object with value 5.0 and type double is [mathematically] an integer. – Lightness Races in Orbit Sep 29 '12 at 20:59

There is Math

The Math object is build into the JavaScript spec so every browser has it natively.

As for data types, JavaScript has Number. That's it. We have no other number data type. The best think to do is to try and work with Integers.

share|improve this answer

Doing some more searching, I came across this.

Javascript BigDecimal library?

It looks like none of them are ideal, but they do the job.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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