Find factorial of a number in JavaScript

किसी भी संख्या का फ़ैक्टोरियल (Factorial) उसके सभी नंबर का गुणनखंड होता है, जैसे यदि हमें किसी नंबर का फ़ैक्टोरियल (Factorial) निकालना है तो उसे नंबर से लेकर 1 नंबर तक सभी संख्याओं का गुणा करके जो उत्तर मिलेगा वही उसका फ़ैक्टोरियल (Factorial) होगा|

उदाहरण के लिए –

4! = 4 * 3 * 2 * 1 = 24
5! = 5 * 4 * 3 * 2 * 1 = 120

नीचे दिया गए जावा स्क्रिप्ट के कोड से हम फ़ैक्टोरियल निकल सकते हैं|

<!doctype html>
<html>
<head>
<script>
function show(){

var i, no, fact;
fact=1;
no=Number(document.getElementById("num").value);
for(i=1; i<=no; i++)  
{
fact= fact*i;
}  
document.getElementById("answer").value= fact;
}
</script>
</head>
<body>
Enter Num: <input id="num">
<button onclick="show()">Factorial</button>
<input id="answer">
</body>
</html>

error: Content is protected !!