【笔记】js Function类型 内部方法callee
运用function实现阶乘 以往的做法是如下的function factorial(num){ if(num <= 1){ return 1; }else{ return num * factorial(num - 1); ...