gpt4 book ai didi

javascript - 了解 Javascript/Typescript 中的 findIndex

转载 作者:搜寻专家 更新时间:2023-10-30 21:04:36 25 4
gpt4 key购买 nike

我正在编写一段 JS 代码。在教程中我发现了一段我不理解的代码:

const position = this.quotes.findIndex((quoteEl: Quote) => {
return quoteEl.id == quote.id;
});

我认为编写代码的人在这一行中塞入了很多不同的部分。有人可以帮我把它变成更“易于理解”的形式吗?

例如,findIndex 方法的参数可能会写在一个单独的函数中,对吧?

谢谢,本杰明

最佳答案

findIndex使用数组的每个元素调用传递的函数,并返回返回 true 的第一个元素的索引,如果没有返回则返回 -1

这是你的回调函数

(quoteEl: Quote) => {
return quoteEl.id == quote.id;
}

关于javascript - 了解 Javascript/Typescript 中的 findIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44661490/

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