From http://www.w3schools.com (Copyright Refsnes Data)

JavaScript MIN_VALUE Property


Number Object Reference JavaScript Number Object

Definition and Usage

The MIN_VALUE property returns the smallest (positive) value that may be used in JavaScript.

This constant has actual value 5 x 10-324.

Syntax

Number.MIN_VALUE


Example

Example

Return the smallest possible value in JavaScript:

<script type="text/javascript">

document.write(Number.MIN_VALUE);

</script>

The output of the code above will be:

5e-324

Try it yourself »


Number Object Reference JavaScript Number Object

From http://www.w3schools.com (Copyright Refsnes Data)