Numéro JavaScript - POSITIVE_INFINITY

La description

Il s'agit d'une valeur numérique spéciale représentant toute valeur supérieure à Number.MAX_VALUE. Cette valeur est représentée par "Infinity". Il ressemble à une infinité dans son comportement mathématique. Par exemple, tout ce qui est multiplié par POSITIVE_INFINITY est POSITIVE_INFINITY, et tout ce qui est divisé par POSITIVE_INFINITY est égal à zéro.

Comme POSITIVE_INFINITY est une constante, il s'agit d'une propriété en lecture seule de Number.

Syntaxe

Utilisez la syntaxe suivante pour utiliser POSITIVE_INFINITY.

var val = Number.POSITIVE_INFINITY;

Exemple

Essayez l'exemple suivant pour découvrir comment utiliser POSITIVE_INFINITY.

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

Production