<html>
<body>
<h1>JavaScript Global Properties</h1>
<h2>The Infinity Property</h2>
<p>1.797693134862315E+308 is the limit of a JavaScript number:</p>
<p id="demo"></p>
<script>
let x = 1.797693134862315E+308;
let y = x * 1.001;
document.getElementById("demo").innerHTML = y;
</script>
</body>
</html>