Numéro JavaScript - MIN_VALUE
La description
le Number.MIN_VALUE la propriété appartient à la statique Numberobjet. Il représente des constantes pour les plus petits nombres positifs possibles avec lesquels JavaScript peut travailler.
Cette constante a une valeur réelle 5 x 10-324
Syntaxe
La syntaxe pour utiliser MIN_VALUE est -
var val = Number.MIN_VALUE;
Exemple
Essayez l'exemple suivant.
<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>