Large Numbers To String In Javascript
When I do the following: alert((2053716830872415770228778006271971120334843128349550587141047275840274143041).toString()); I get the '2.053716830872415e+75' exponential notation.
Solution 1:
Javascript uses 64-bit floating point numbers. It is impossible to precisely store your value in a Javascript number.
Instead, you should use a BigInteger library.
Post a Comment for "Large Numbers To String In Javascript"