Is this defined by the language? Is there a defined maximum? Is it different in different browsers?
|
feedback
|
|
+/- 9007199254740992
They are 64-bit floating point values, the largest exact integral value is 253, or Note that the bitwise operators and shift operators operate on 32-bit ints. Test it out!
| |||||||||||||||||||||
feedback
|
|
From the reference:
| |||||
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
And can be dangerous :)
| |||
|
feedback
|
To be safe
ReasoningI thought I'd be clever and find the value at which 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
Finding
| ||||
|
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: Signed: (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: 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!) | |||
|
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:
| |||
|
feedback
|
|
In javascript, there is a number called Infinity example:
This may be sufficient for some questions regarding this topic. | |||
|
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. | |||||||
feedback
|
|
maxInt = -1 >>> 1 in Firefox 3.6 it's 2^31 - 1. | |||||
feedback
|
|
In the Google Chrome built-in javascript, you can go to approximately 2^1024 before the number is called infinity. | |||
|
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 | |||
|
feedback
|