Número de JavaScript: MIN_VALUE

Descripción

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

Esta constante tiene un valor real de 5 x 10-324

Sintaxis

La sintaxis para usar MIN_VALUE es -

var val = Number.MIN_VALUE;

Ejemplo

Pruebe el siguiente ejemplo.

<html>
   <head>      
      <script type = "text/javascript">
         <!--
            function showValue() {
               var val = Number.MIN_VALUE;
               alert("Value of Number.MIN_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