<html>
<body>
<h1>JavaScript Functions</h1>
<p>Call a function to compute the product of p1 and p2 and return the result:</p>
<p id="demo"></p>
<script>
// Function to compute the product of p1 and p2
function myFunction(p1, p2) {
return p1 * p2;
}
let result = myFunction(4, 3);
document.getElementById("demo").innerHTML = "The result is: " + result;
</script>
</body>
</html>