Número de JavaScript: NEGATIVE_INFINITY

Descripción

Este es un valor numérico especial que representa un valor menor que Number.MIN_VALUE. Este valor se representa como "-Infinito". Se parece a un infinito en su comportamiento matemático. Por ejemplo, cualquier cosa multiplicada por NEGATIVE_INFINITY es NEGATIVE_INFINITY, y cualquier cosa dividida por NEGATIVE_INFINITY es cero.

Dado que NEGATIVE_INFINITY es una constante, es una propiedad de solo lectura de Number.

Sintaxis

La sintaxis para usar NEGATIVE_INFINITY es la siguiente:

var val = Number.NEGATIVE_INFINITY;

Ejemplo

Pruebe el siguiente ejemplo.

<html>
   <head>      
      <script type = "text/javascript">
         <!--
            function showValue() {
               var smallNumber = (-Number.MAX_VALUE) * 2              
               if (smallNumber == Number.NEGATIVE_INFINITY) {
                  alert("Value of smallNumber : " + smallNumber );
               }
            }
         //-->
      </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