How do I associate a button with a function andn still have it display text, click to calculate,and start a function in JavaScript

<html>
<head>
<script type="text/javascript">
function Calculate(num1, num2)
{
var total = num1 + num2;
alert(num1 + " plus " + num2 + " makes " + total);
}
</script>
</head>

<body>
<form>
<input type="button" value="Click to calculate" onclick="Calculate(8, 4)" />
</form>

<p>Clicking the above button calls a function that calculates the sum of 8 plus 4 and shows an alert message.</p>

</body>
</html>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.