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()
主要还是因为 alert,如果是 console.log 就难说了 ..
console.log
最多设置5个标签!
付费偷看金额在0.1-10元之间
alert
只能接受字符串参数,如果不是字符串,会自动调用toString()
方法主要还是因为
alert
,如果是console.log
就难说了 ..一周热门 更多>