Descrição
Este é um valor numérico especial que representa um valor menor que Number.MIN_VALUE. Este valor é representado como "-Infinity". Ele se assemelha ao infinito em seu comportamento matemático. Por exemplo, qualquer coisa multiplicada por NEGATIVE_INFINITY é NEGATIVE_INFINITY, e qualquer coisa dividida por NEGATIVE_INFINITY é zero.
Como NEGATIVE_INFINITY é uma constante, é uma propriedade somente leitura de Number.
Sintaxe
A sintaxe para usar NEGATIVE_INFINITY é a seguinte -
var val = Number.NEGATIVE_INFINITY;
Exemplo
Experimente o seguinte exemplo.
<html>
<head>
<script type = "text/javascript">
<!--
function showValue() {
var smallNumber = (-Number.MAX_VALUE) * 2
if (smallNumber == Number.NEGATIVE_INFINITY) {
alert("Value of smallNumber : " + smallNumber );
}
}
//-->
</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