+ 1

Javascript

what is meaning of "double precision floating point numbers" on JavaScirpt.

1st Sep 2020, 5:32 AM
Shakhzod Kuchkarov
Shakhzod Kuchkarov - avatar
1 Answer
+ 1
JavaScript numbers are always stored as double precision float numbers, following the international IEEE 754 standard. This format stores numbers in 64 bits, where the number (the fraction) is stored in bits 0 to 51, the exponent in bits 52 to 62, and the sign in bit 63: Value (aka Fraction/Mantissa) Exponent.
20th Dec 2020, 4:10 PM
Duane Francis Rodrigues
Duane Francis Rodrigues - avatar