【JavaScript】toString()自动调用
2018-11-30 本文已影响0人
level
toString() 方法返回一个对象的字符串形,默认情况下返回类型字符串。
首先看一个示例:
function add(x) {
let i = x,
a = function(j) {
i += +j;
return a;
}
a.toString = function() {
return i;
}
return a;
}
add(1)(2)(3)(4); //10
在调用add的时候,自动调用了toString方法