The MIN_VALUE property has a value of approximately 5e-324. Values smaller than MIN_VALUE are converted to 0.
It is a non-writable, non-enumerable, and non-configurable property.
The syntax to access the MIN_VALUE
constant is:
Number.MIN_VALUE
MIN_VALUE
is accessed using the Number
class name.
Example: Using Number.MIN_VALUE
value = Number.MIN_VALUE;
console.log(value); // 5e-324
Output
5e-324
Note: Number.MIN_VALUE
is not the most negative number. The most negative number is negative Number.MAX_NUMBER
.
Recommended Reading: