Is this defined by the language? Is there a defined maximum? Is it different in different browsers?

link|improve this question

feedback

11 Answers

up vote 64 down vote accepted

+/- 9007199254740992

ECMA Section 8.5 - Numbers

Note that all the positive and negative integers whose magnitude is no greater than 253 are representable in the Number type (indeed, the integer 0 has two representations, +0 and −0).

They are 64-bit floating point values, the largest exact integral value is 253, or 9007199254740992.

Note that the bitwise operators and shift operators operate on 32-bit ints.


Test it out!

var x = 9007199254740992;
var y = -x;
x == x + 1; // true !
y == y - 1; // also true !
// Arithmetic operators work, but bitwise/shifts only operate on int32:
x / 2;      // 4503599627370496
x >> 1;     // 0
x | 1;      // 1
link|improve this answer
6  
This seems right, but is there someplace where this is defined, á la C's MAX_INT or Java's Integer.MAX_VALUE? – TALlama Nov 20 '08 at 23:35
1  
according to IEEE_754 standard, 64-bit floating point uses 53 bits for the mantissa. As far as a javascript constant, I'm not aware of any. – Jimmy Nov 21 '08 at 18:14
1  
Link to the specification: ecma262-5.com/ELS5_HTML.htm#Section_8.5 – Felix Kling Apr 14 '11 at 8:09
3  
4294967295 === Math.pow(2,32) - 1; – CoolAJ86 Aug 23 '11 at 20:15
3  
So what's the smallest and largest integer we can use to assure exact precision? – Pacerier Oct 15 '11 at 16:21
show 1 more comment
feedback

From the reference:

alert([Number.MAX_VALUE, Number.MIN_VALUE]);
link|improve this answer
1  
I've edited the question to be a bit more precise about wanting the max Integer values, not just the max Number value. Sorry for the confusion, here. – TALlama Nov 20 '08 at 23:21
feedback

It is 2^53 == 9 007 199 254 740 992. This is because Numbers are stored as floating point is a 52 bit mantissa.

The min value is -2^53.

http://blog.vjeux.com/2010/javascript/javascript-max_int-number-limits.html

This makes some fun things happening

Math.pow(2, 53) == Math.pow(2, 53) + 1
>> true

And can be dangerous :)

var MAX_INT = Math.pow(2, 53); // 9 007 199 254 740 992
for (var i = MAX_INT; i < MAX_INT + 2; ++i) {
  // infinite loop
}
link|improve this answer
feedback

To be safe

var MAX_INT = 4294967295;

Reasoning

I thought I'd be clever and find the value at which x + 1 === x with a more pragmatic approach.

My machine can only count 10 million per second or so... so I'll post back with the definitive answer in 28.56 years.

If you can't wait that long, I'm willing to bet that

  • Most of your loops don't run for 28.56 years
  • 9007199254740992 === Math.pow(2, 53) + 1 is proof enough
  • You should stick to 4294967295 which is Math.pow(2,32) - 1 as to avoid expected issues with bit-shifting

Finding x + 1 === x:

(function () {
  "use strict";

  var x = 0
    , start = new Date().valueOf()
    ;

  while (x + 1 != x) {
    if (!(x % 10000000)) {
      console.log(x);
    }

    x += 1
  }

  console.log(x, new Date().valueOf() - start);
}());
link|improve this answer
feedback

The short answer is “it depends.”

If you’re using bitwise operators anywhere (or if you’re referring to the length of an Array), the ranges are:

Unsigned: 0…(-1>>>0)

Signed: (-(-1>>>1)-1)…(-1>>>1)

(It so happens that the bitwise operators and the maximum length of an array are restricted to 32-bit integers.)

If you’re not using bitwise operators or working with array lengths:

Signed: (-Math.pow(2,53))…(+Math.pow(2,53))

These limitations are imposed by the internal representation of the “Number” type, which generally corresponds to IEEE 754 double-precision floating-point representation. (Note that unlike typical signed integers, the magnitude of the negative limit is the same as the magnitude of the positive limit, due to characteristics of the internal representation, which actually includes a negative 0!)

link|improve this answer
Whoever downvoted, do you care to comment? – danorton Jul 17 '11 at 14:24
feedback

I did a simple test with a formula X-(X+1)=-1 and the largest value of X I can get to work on Safari, Opera and Firefox (tested on OSX) is 9e15. Here is the code I used for testing:

javascript: alert(9e15-(9e15+1));
link|improve this answer
Note that 9e15 = 2^53 (see @Jimmy's answer). – Wedge Nov 21 '08 at 0:39
feedback

In javascript, there is a number called Infinity

example:

(Infinity>100)
=> true

This may be sufficient for some questions regarding this topic.

link|improve this answer
feedback

Firefox 3 doesnt seem to have a problem with huge numbers.

1e+200 * 1e+100 will calculate fine to 1e+300.

Safari seem to have no problem with it aswell. (For the record, this is on a Mac if anyone else decides to test this)

Unless I lost my brain at this time of day, this is way bigger than a 64-bit integer.

link|improve this answer
8  
its not a 64 bit integer, its a 64-bit floating point number, of which 52/53 bits are the integer portion. so it will handle up to 1e300, but not with exact precision. – Jimmy Nov 21 '08 at 18:11
Jimmy is correct. Try this in your browser or JS command line: 100000000000000010 - 1 => 100000000000000020 – Ryan Oct 7 '11 at 21:54
feedback

maxInt = -1 >>> 1

in Firefox 3.6 it's 2^31 - 1.

link|improve this answer
3  
Bitwise operations are working on 32 bits on Javascript. – Vjeux May 4 '11 at 14:37
feedback

In the Google Chrome built-in javascript, you can go to approximately 2^1024 before the number is called infinity.

link|improve this answer
feedback

anything you want to use for bitwise operations must be between 0x80000000 (-2147483648 or -2^31) and 0x7fffffff (2147483647 or 2^31 - 1).

the console will tell you that 0x80000000 equals +2147483648, but 0x80000000 & 0x80000000 equals -2147483648

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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