标签:oat end col .com OLE color ott family code
求一个正整数的阶乘/*
求一个正整数的阶乘。
* 输入一个正整数,返回它的阶乘。
* */
let fact = (function f(num){
"use strict";
if(num<=1){
return 1;
}
else {
return num*f(num-1);
}
});
console.log(fact(4));
**
标签:oat end col .com OLE color ott family code
原文地址:https://www.cnblogs.com/moyuling/p/8995693.html