2016-11-01 08:32发布
解法如下.function count(x){
var fn = function(y){ return count(x*y); } fn.toString = function(){ // 前面的还好理解,关键是这句话。 return x; }; return fn;
}alert(count(1)(3)(5));//15为什么之前返回都是一个函数的引用,但是最后一个参数传入后,方法返回一个数字?
alert 只能接受字符串参数,如果不是字符串,会自动调用 toString() 方法
alert
toString()
最多设置5个标签!
alert
只能接受字符串参数,如果不是字符串,会自动调用toString()
方法一周热门 更多>