Descrição
o Number.MIN_VALUE propriedade pertence ao estático Numberobjeto. Ele representa constantes para os menores números positivos possíveis com os quais o JavaScript pode trabalhar.
Esta constante tem valor real 5 x 10 -324
Sintaxe
A sintaxe para usar MIN_VALUE é -
var val = Number.MIN_VALUE;
Exemplo
Experimente o seguinte exemplo.
<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>
Resultado