JavaScript Number MAX_VALUE
描述
Number.MAX_VALUE 属性属于静态的 Number 对象。它表示JavaScript可以处理的最大可能正数的常量。
此常量的实际值为1.7976931348623157 x 10 308
语法
使用MAX_VALUE的语法为−
var val = Number.MAX_VALUE;
示例
尝试以下示例,学习如何使用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>