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