gpt4 book ai didi

javascript - Array.find() 或 Array.some() 但返回自定义值

转载 作者:行者123 更新时间:2023-12-02 21:39:27 26 4
gpt4 key购买 nike

我能做什么:

const val = array.find((val) => <condition>);
const index = array.indexOf(val);

我想做的事:

const { val, index } = array.someFunc((val, index) => <condition> && { val, index });

外面还有这样的事吗? some() 被简化为 bool 值,而 find() 仅返回数组元素,但都不适合用例。

最佳答案

没有内置的功能。但是Object.entries可以使用:

const array = ['foo', 'bar', 'baz'];

const [ index, val ] = Object.entries(array).find(([i, v]) => v === 'baz');

console.log(index, val);

关于javascript - Array.find() 或 Array.some() 但返回自定义值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60404361/

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