<html>
<body>
<h1>JavaScript Numbers</h1>
<h2>The NEGATIVE_INFINITY Property</h2>
<p>Number.NEGATIVE_INFINITY returns negative Infinity:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Number.NEGATIVE_INFINITY;
</script>
</body>
</html>