比如递归,计算一个阶乘
function fact(num) { if(num <= 1) { return 1; } else { return num * arguments.callee(num - 1) } } console.log (fact(4)) //24