The MIN_VALUE property gets the minimum possible numeric value known to JavaScript.
This is approximately: 2.22E-308.
<html> <body> <script language="JavaScript"> <!-- if((0.0000000001) >= Number.MIN_VALUE){ document.write("The number is not the minimum value"); } --> </script> </body> </html>