arguments.callee的用法
Posted 快乐~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arguments.callee的用法相关的知识,希望对你有一定的参考价值。
1.今天在看高阶函数,其实currying的一个函数中,有那个arguments.callee,表示不见过,查了查。
arguments.callee 在哪一个函数中运行,它就代表哪个函数。 一般用在匿名函数中。 在匿名函数中有时会需要自己调用自己,但是由于是匿名函数,没有名子,无名可调。 这时就可以用arguments.callee来代替匿名的函数
var currying = function ( fn ) {
var args = [];
return function () {
if( arguments.length ===0 ){
return fn.apply( this, args);
}else{
[].push.apply(args, arguments);
return arguments.callee;
}
}
};
var cost = (function () {
var money = 0;
return function () {
for( var i = 0,l = arguments.length; i < l; i++){
money += arguments[i];
}
return money;
}
})()
var cost = currying( cost );
cost(100);
cost(200);
cost(300);
alert(cost()) //600
以上是关于arguments.callee的用法的主要内容,如果未能解决你的问题,请参考以下文章
二——01Day:对象的索引理解,对象上的this指向,对象转换为字符串,函数的预解析,arguments.callee的用法,