gpt4 book ai didi

javascript - .forEach 中 thisArg 的用途是什么?

转载 作者:行者123 更新时间:2023-12-01 15:29:24 24 4
gpt4 key购买 nike

JavaScript 的 forEach documentation声明 .forEach语法是:

arr.forEach(callback[, thisArg])
thisArg有什么用?

最佳答案

thisArg指应调用回调的上下文,
基本上就是this指内部回调。例如:

var myObject = { name: 'myObject' };

[1,2].forEach(function(item) {
console.log(item); // 1, 2
console.log(this === myObject); // true
}, myObject)

关于javascript - .forEach 中 thisArg 的用途是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34556558/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com