x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
5
<p id="msg"></p>
6
<p>The <code>Math.sqrt()</code> function returns the square root of a number.</p>
7
8
<script>
9
  document.getElementById("msg").innerHTML = Math.sqrt(16);
10
</script>