The following code
console.log(Math.pow(2, 53));
console.log(Math.pow(2, 53) + 1);
produces exactly same output for both calculations:
9007199254740992
Why?
|
The following code
produces exactly same output for both calculations:
Why? |
|||
|
|
The result you see occurs because There are typically, in a 64-bit (8-byte) IEEE 754 floating-point binary value, 53 bits for the mantissa (including the implied 1-bit). Your calculation |
||||
|
|