<html>
<title>
functions
</title>
<body>
<p>practise functions</p>
<p id="fun"></p>
<script>
var x= function(a,b)
{
return a*b;
document.getElementById("fun").innerHTML=x;
}
</script>
</body>
</html>
…
can anyone help me why i am not getting the o/p properly…
I don’t no I am feeling functions are tough… irritated …