<!DOCTYPE html>
<title>My Example</title>
<p id="msg"></p>
<p>The <code>Math.max()</code> function returns the largest of zero or more numbers.</p>
<script>
document.getElementById("msg").innerHTML = Math.max( -8, 10, 53, 67 );
</script>