x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 数字</h1>
<h2>MIN_VALUE 属性</h2>
<p>使用 x.MIN_VALUE,其中 x 是一个变量,返回 undefined:</p>
<p id="demo"></p>
<script>
let x = 100; 
document.getElementById("demo").innerHTML = x.MIN_VALUE+1;
</script>
</body>
</html>