Número de JavaScript: MAX_VALUE

Descripción

los Number.MAX_VALUE la propiedad pertenece a la estática Numberobjeto. Representa constantes para los números positivos más grandes posibles con los que JavaScript puede trabajar.

El valor real de esta constante es 1.7976931348623157 x 10 308

Sintaxis

La sintaxis para usar MAX_VALUE es -

var val = Number.MAX_VALUE;

Ejemplo

Pruebe el siguiente ejemplo para aprender a utilizar MAX_VALUE.

<html>
   <head>      
      <script type = "text/javascript">
         <!--
            function showValue() {
               var val = Number.MAX_VALUE;
               document.write ("Value of Number.MAX_VALUE : " + val );
            }
         //-->
      </script>      
   </head>
   
   <body>
      <p>Click the following to see the result:</p>     
      <form>
         <input type = "button" value = "Click Me" onclick = "showValue();" />
      </form>      
   </body>
</html>

Salida