The MAX_VALUE property gets the maximum representable value for a number.
This is approximately: 1.79E?8.
<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>