Descrição
o Number.MAX_VALUE propriedade pertence ao estático Numberobjeto. Ele representa constantes para os maiores números positivos possíveis com os quais o JavaScript pode trabalhar.
O valor real desta constante é 1,7976931348623157 x 10 308
Sintaxe
A sintaxe para usar MAX_VALUE é -
var val = Number.MAX_VALUE;
Exemplo
Experimente o exemplo a seguir para aprender a usar MAX_VALUE.
<html>
<head>
<script type = "text/javascript">
<!--
function showValue() {
var val = Number.MAX_VALUE;
document.write ("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>
Resultado