MIN_VALUE

This property is used to return the smallest number possible available to JavaScript. This number is 5e-324, which is five to the negative 324, which is 5 with 324 zeros in front of it, then a decimal point. VERY small number.

syntax:

Number.MIN_VALUE

EXAMPLE

variableOne = Number.MIN_VALUE;

document.write("The smallest number available to JavaScript is " + variableOne);

The example loads MIN_VALUE into the variableOne variable. A document.write statement then write sthe text and the contents of variableOne to the screen.