The Number.MIN_VALUE property of the Number object represents the minimum number allowed in JavaScript.
Syntax
Its Syntax is as follows
Number.MIN_VALUE
Example
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Number.MIN_VALUE; document.write("Minimum value: " + result); </script> </body> </html>
Output
Minimum value: 5e-324