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 can represent it as (figure below):
We see that the comma fluctuates, as the exponent increases it moves from right to left, while as the exponent decreases it moves from left to right.
Let’s take one more example.
The normalized scientific form requires that there be a number before the root point that is not zero. The floating point standard for storing numbers transforms them into the normalized scientific notation.
THE IEEE 754 STANDARD
If the sign bit is zero then the number is positive, otherwise negative. As much as 52 bits is a lot to represent the mantissa,
there are cases where they may not be enough, and it is not just a problem for large numbers.
Let’s start by saying that this is not a problem with javascript but with the IEEE 754 standard. 0.110 is a periodic binary number that repeats infinitely, so it must be rounded, kind of like we do with decimal numbers .
As small as the difference is, effectively we cannot say that the two numbers are the same. Problems occur with very large or very small numbers. With this system we can represent exactly the numbers in the range -(253 -1) and + (253 -1).
THE BIGINT TYPE.
The BigInt type represents integers. We can do all the arithmetic operations we want, it can also represent very large numbers that go far beyond the constant MAX_SAFE_INTEGER thus exceeding the limits of type Number.
TYPE BOOLEAN
Boolean represents a logical entity and can have two values: true and false. For example, in JavaScript, Boolean conditional tests are often used to decide which sections of code to execute (such as if statements) or repeat (such as for loops).
NULL VS UNDEFINED
Null means no value, undefined indicates that a variable, object or function has been declared but not defined. Using the operator !! both return false, plus both are primitive data.
Leave A Comment