Changes between Version 2 and Version 3 of Ticket #11060, comment 10
- Timestamp:
- Jul 15, 2013, 2:01:01 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11060, comment 10
v2 v3 17 17 This is already fixed, please upgrade your version of jQuery. 18 18 19 JavaScript numbers are IEEE standard 754, double-precision binary floating-point 64-bit numbers. This means that only even numbers greater then ( 2^53) are representable. jQuery had enough bug report/complaints about larger numbers (eg. 201319611370584515) being rounded that the only solution was to use a string to represent data values that were not representable as numbers. This way you get the actual value, despite the type being incorrect.19 JavaScript numbers are IEEE standard 754, double-precision binary floating-point 64-bit numbers. This means that only even numbers greater then (`2^53`) are representable. jQuery had enough bug report/complaints about larger numbers (eg. 201319611370584515) being rounded that the only solution was to use a string to represent data values that were not representable as numbers. This way you get the actual value, despite the type being incorrect.