UNPKG
factorial_moh
Version:
latest (1.0.0)
1.0.0
factorial
factorial_moh
/
fact.js
10 lines
(8 loc)
•
147 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
exports
.
fact
=
function
(
x
) {
var
count=
1
;
for
(
var
i=x;i>
0
;i--){ count*=i; }
console
.
log
(
"Factorial"
, count); }