Number.MAX_VALUE : MAX_VALUE « Number Data Type « JavaScript Tutorial






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>








5.12.MAX_VALUE
5.12.1.Number.MAX_VALUE