callee属性用来引用当前正在执行的函数。允许对未命名的函数递归的调用自身eg:function (x){ if(x<=1) return 1; return x*arguments.callee(x-1); }