请教大神,js中内置Array对象中的map方法和filter方法的最后一个参数thisValue是

2019-01-02 21:55发布

问题:

在网上找了好久,都没有关于map和filter方法最后一个参数 thisValue 的用法,仅仅初略的解释了一下。

回答1:

举个例子:

[1, 2, 3].map(function() {
  console.log(this) // 在回调函数里使用 this,这个 this 就指向那个 {a: 1}
}, {a: 1})


回答2:

文档说的挺明白的啊,this的值,不就是上下文的值了



标签: