<html>
<body>
<h1>JavaScript Numbers</h1>
<h2>The MIN_VALUE Property</h2>
<p>Number.MIN_VALUE returns the smallest possible number in JavaScript:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Number.MIN_VALUE;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_min_value by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:11 GMT -->
</html>