<!DOCTYPE html>
<title>My Example</title>
<p id="msg"></p>
<p><code>Math.PI</code> is a static property that represents the ratio of the circumference of a circle to its diameter. Therefore the result will always the same number, regardless of the circle's size.</p>
<script>
document.getElementById("msg").innerHTML = Math.PI;
</script>