JavaScript summing large integers

JavaScript uses floating point internally.

What is JavaScript’s highest integer value that a number can go to without losing precision?

In other words you can’t use more than 53 bits. In some implementations you may be limited to 31.

Try storing the bits in more than one variable, use a string, or get a bignum library, or if you only need to deal with integers, a biginteger library.

Leave a Comment