JavaScript MAX_VALUE Property
Definition and Usage
The MAX_VALUE property returns the largest value that may be used in JavaScript.This constant has actual value 1.7976931348623157 x 10308.
Syntax
Number.MAX_VALUE |
Example
<script type="text/javascript"> document.write(Number.MAX_VALUE); </script> |
The output of the code above will be:
1.7976931348623157e+308 |
JavaScript MAX_VALUE Property
Reviewed by 1000sourcecodes
on
23:04
Rating: