<!DOCTYPE html>
<title>My Example</title>
<p id="msg"></p>
<p>The <code>Math.sqrt()</code> function returns the square root of a number.</p>
<script>
document.getElementById("msg").innerHTML = Math.sqrt(16);
</script>