<body>
<script type="text/javascript">
<input type="button" value="Click me" onclick=document.write(product(4,3))/>;
</script>
<p>The script in the body section calls a function with two parameters (4 and 3).</p>
<p>The function will return the product of these two parameters.</p>
</body>
</html>
document.write(product(4,3)) ...is not getting executed Y? What is the problem?