Mega Code Archive

 
Categories / JavaScript Tutorial / Number Data Type
 

Number MAX_VALUE

The MAX_VALUE property gets the maximum representable value for a number. This is approximately: 1.79E¶308. <html>     <body>     <script language="JavaScript">     <!--     if((99999*99999) <= Number.MAX_VALUE){          document.write("The number is not greater than the maximum value");     }     -->     </script>     </body>     </html>