La propriété Number.MAX_VALUE appartient à l'objet statique Number. Cela représente la plus grande constante positive possible avec laquelle JavaScript peut fonctionner.
Cette constante a une valeur réelle de
Grammaire
La valeur est accessible en utilisant la syntaxe suivante :
var val = Number.MAX_VALUE;
Exemple :
Voici un exemple d'utilisation des attributs.
<html> <head> <script type="text/javascript"> <!-- function showValue() { var val = Number.MAX_VALUE; alert("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>
Cela produira les résultats suivants :