<html>
<body>
<p>Click the button to display the smallest possible positive number in JavaScript.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = 100;
document.getElementById("demo").innerHTML = x.MIN_VALUE;
}
</script>
</body>
</html>