<html>
<body>
<p>Click the button to display the largest possible 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.MAX_VALUE;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_max_value_obj by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:02:26 GMT -->
</html>