THE TYPE NUMBER AND OTHER PRIMITIVE DATA IN JAVASCRIPT
NUMBERS IN JAVASCRIPT Number with the ES2019 specification is the only type associated with numbers. We do not have the float type for decimal numbers. Numbers in javascript are represented according to the IEEE 754 floating point 64-bit standard. Every number even integers are represented and stored in memory as 64-bit floating point numbers. THE SCIENTIFIC OR EXPONENTIAL NOTATION Any number can be represented with scientific notation (also called exponential): mantissa*base exponent The mantissa are the significant figures, excluding zero; the base is ten because we are in the decimal system. For example, a number we [...]