Definition and Usage The MIN_VALUE property returns the smallest (positive) value that may be used in JavaScript. This constant has actual ...
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
<script type="text/javascript"> document.write(Number.MIN_VALUE); </script> |
The output of the code above will be:
5e-324 |