JavaScript MIN_VALUE Property
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 |
JavaScript MIN_VALUE Property
Reviewed by 1000sourcecodes
on
23:03
Rating: