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