arguments.callee 在哪一个函数中运行,它就代表哪个函数。 一般用在匿名函数中。
在匿名函数中有时会需要自己调用自己,但是由于是匿名函数,没有名子,无名可调。
这时就可以用
arguments.callee来代替匿名的函数。
show me the code:
*(function(n){
**
** if(n > 1)
**** return n arguments.calle(n-1);
**
** return n;
**
**})(10);
**
arguments.callee 在哪一个函数中运行,它就代表哪个函数。 一般用在匿名函数中。
在匿名函数中有时会需要自己调用自己,但是由于是匿名函数,没有名子,无名可调。
这时就可以用
arguments.callee来代替匿名的函数。
show me the code:
*(function(n){
**
** if(n > 1)
**** return n arguments.calle(n-1);
**
** return n;
**
**})(10);
**
本文标题:arguments.callee
本文链接:https://www.haomeiwen.com/subject/mizgsttx.html
网友评论