gpt4 book ai didi

javascript - 如果 array.find() 不返回任何内容,如何调用方法?

转载 作者:行者123 更新时间:2023-12-03 05:58:09 25 4
gpt4 key购买 nike

我正在使用 array.find() 搜索数组中的元素,如下所示:

this.selectedLib = libraries.find(lib => lib.name === 'Standard');

现在这个方法检查是否有任何库的名称为“Standard”,如果它具有“标准”,它将 selectedLib 设置为标准。

但是如果没有名称为 Standard 的库,我想将索引位置 0 处的库设置为 selectedLib。

像这样的东西......:

lib.name=='Standard' ? lib : libraries[0]

有办法吗?

最佳答案

The find() method returns a value in the array, if an element in the array satisfies the provided testing function. Otherwise undefined is returned

.

var libraries = [{
name: "Not Standard",
id: 1
}, {
name: "Not Standard",
id: 2
}]
var selectedLib = libraries.find(lib => lib.name === 'Standard') || libraries[0];
console.log(selectedLib);

关于javascript - 如果 array.find() 不返回任何内容,如何调用方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39845934/

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