How can I convert a long integer (as a string) to a numerical format in Javascript without javascript rounding it?

var ThisInt = '9223372036854775808'
alert(ThisInt+'\r' +parseFloat(ThisInt).toString()+'\r' +parseInt(ThisInt).toString());

I need to perform an addition on it before casting it back as a string & would prefer not to have to slice it two if at all possible.

link|improve this question

feedback

5 Answers

up vote 5 down vote accepted

All numbers in Javascript are 64 bit "double" precision IEE754 floating point.

The largest positive whole number that can therefore be accurately represented is 2^53. The remaining bits are reserved for the exponent.

Your number is exactly 1024 times larger than that, so loses 3 decimal digits of precision. It simply cannot be represented any more accurately.

There is a BigInteger library available which should be able to help, though, and avoid you having to do all the string and bit twiddling yourself.

link|improve this answer
Thank you. He has a lot of useful functions which I can see are going to help me for some time to come. Cheers – Oppdal Mar 18 '11 at 15:18
you're welcome! The fact that all numbers in JS are actually doubles is fundamental to the language, but apparently not well known. – Alnitak Mar 18 '11 at 15:19
feedback

Have you tried using the Number class?
var num = new Number(parseFloat(ThisInt))

link|improve this answer
feedback

You cannot do this with standard Javascript. But as always, there is a nifty little library to help us out, in this case BigInt.js, which will let you use arbitrary-precision integers.

link|improve this answer
feedback

With a little help from recursion, you can directly increment your decimal string, be it representing a 64 bit number or more...

/**
 * Increment a decimal by 1
 *
 * @param {String} n The decimal string
 * @return The incremented value
 */
function increment(n) {
    var lastChar = parseInt(n.charAt(n.length - 1)),
        firstPart = n.substr(0, n.length - 1);

    return lastChar < 9
        ? firstPart + (lastChar + 1)
        : firstPart
            ? increment(firstPart) + "0"
            : "10";
}
link|improve this answer
-1 For nested ternary operators ugh – x3ro Mar 28 '11 at 2:31
@x3ro: Why? It's all in getting used to proper indentation. Terse syntax that's following a convention is often better than verbose code that takes ages to mentally parse. I think you are blindly applying conventional wisdom (that "terse is bad") without considering the usage... – Ates Goral Mar 28 '11 at 8:47
@Ates Goral: No, not really (to the applying conventional wisdom). I see why it is done like this, however I think that it decreases the readability of your code significantly, and thats why I dislike it. But maybe I'm a bit damaged too, because I had to debug code with like 10 nested ternary operators, and it wasn't that much fun. – x3ro Mar 28 '11 at 10:06
@x3ro: 10 != 2 ;) – Ates Goral Apr 1 '11 at 2:13
@Ates Goral: Yeah, true. However, imagine you need a quick change in such a piece of code. Probably you would rather add another ternary than rewrite it, wouldn't you? :) – x3ro Apr 1 '11 at 3:59
show 1 more comment
feedback

Just use Number(ThisInt) for this instead of Int or float

link|improve this answer
-1 Does not work in Chrome: number("9223372036854775808") and NUMBER("9223372036854775808") both fail. – x3ro Mar 18 '11 at 14:31
@x3ro - Check this article, It says Chrome is also supported - w3schools.com/jsref/jsref_Number.asp – Sachin Shanbhag Mar 18 '11 at 14:32
2  
I think he meant Number. – nightcracker Mar 18 '11 at 14:33
@Sachin Shanbhag: Yep, but the way you answered one would suspect Number to be a function rather than an object of which you need to create an instance with new – x3ro Mar 18 '11 at 14:34
1  
@Sachin Shanbhag: Ah okay, my bad. Anyhow, new Number() and Number() seem to be identical. – x3ro Mar 18 '11 at 14:40
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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