美文网首页
【JavaScript】toString()自动调用

【JavaScript】toString()自动调用

作者: level | 来源:发表于2018-11-30 14:49 被阅读0次

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方法

相关文章

网友评论

      本文标题:【JavaScript】toString()自动调用

      本文链接:https://www.haomeiwen.com/subject/bwmfcqtx.html