Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What are some important considerations for developers using JavaScript's Number type? I know it's an implementation of C's double type, but I'm a self-taught Python developer so that doesn't take me very far. Pointers to well-written articles will be great answers.

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

In general, it's just the general problems that plague Floating Point based arithmetic. For example, .1 + .2 == 0.30000000000000004 in JavaScript.

A good article on floating point arithmetic in general, and some of the problems associated with it can be found here on Wikipedia.


Edit: a previous answer to a similar question that seemed to be pretty popular - http://stackoverflow.com/questions/588004/is-javascripts-math-broken/588014#588014

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.