Report Bug
Qus : JavaScript numbers are stored as
Qus जावास्क्रिप्ट संख्याएँ इस प्रकार संग्रहित की जाती हैं

A. integers
B. double precision floating point
C. double
D. floating point


Solution
B. double precision floating point



Explanation
In JavaScript, numbers are stored as double-precision floating-point numbers, which is in accordance with the IEEE 754 standard.



Report Bug