how to Create Javascript Recursive function
<html>
<head>
<title>
THis is recursive function example
</title>
<script type="text/javascript" language="javascript">
var s=window.prompt("enter the no ","");
s=parseInt(s);
function rec(s)
{
if(s==1)
{
return 1;
}
else
{
return s*rec(s-1);
}
}
function show()
{
var t=rec(s);
document.write("the factorial of a no is "+t);
}
</script>
</head>
<body onload="show()">
</body>
</html>
No comments:
Post a Comment