ES6 - Number.MIN_VALUE



The Number.MIN_VALUE property belongs to the static Number object. It represents constants for the smallest possible positive numbers that JavaScript can work with.

This constant has actual value 5 x 10-324

Syntax

var val = Number.MIN_VALUE;

Example

var val = Number.MAX_VALUE;
console.log("Value of Number.MIN_VALUE : " + val );

Output

Value of Number.MIN_VALUE : 1.7976931348623157e+308
Advertisements