扫码一下
查看教程更方便
NEGATIVE_INFINITY 属性表示负无穷大。
NEGATIVE_INFINITY 属性表示小于 Number.MIN_VALUE 的值。
因为 NEGATIVE_INFINITY 是一个常量,所以它是 Number 的只读属性。
使用 NEGATIVE_INFINITY 的语法如下
var val = Number.NEGATIVE_INFINITY;
所有主流浏览器都支持 NEGATIVE_INFINITY 属性。
<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>点击以下按钮查看结果:</p>
<form>
<input type = "button" value = "Click Me" onclick = "showValue();" />
</form>
</body>
</html>
输出结果:
Value of smallNumber : -Infinity