<html>
<body>
<h1>JavaScript Math</h1>
<h2>The Math.max() Method</h2>
<p>Return the numbers with the highest value:</p>
<p id="demo"></p>
<script>
let a = Math.max(5, 10);
let b = Math.max(0, 150, 30, 20, 38);
let c = Math.max(-5, 10);
let d = Math.max(-5, -10);
let e = Math.max(1.5, 2.5);
document.getElementById("demo").innerHTML =
a + "<br>" + b + "<br>" + c + "<br>" + d + "<br>" + e;
</script>
</body>
</html>