gpt4 book ai didi

JavaScript forEach 方法不适用于箭头函数

转载 作者:行者123 更新时间:2023-12-01 00:19:32 28 4
gpt4 key购买 nike

const array3 = [5, 10, 15, 20, 25, 30, 35, 40];
const function5 = (index, element) => {return index + ": " + element};
console.log(array3.forEach(function5));

为什么这段代码不起作用,我做错了什么?

最佳答案

您需要使用.map(),因为.forEach()将始终返回undefined,您期望的结果可以是使用map()函数获取:

const array3 = [5, 10, 15, 20, 25, 30, 35, 40];
const function5 = (index, element) => {return index + ": " + element};
console.log(array3.map(function5));

关于JavaScript forEach 方法不适用于箭头函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59530098/

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