📅  最后修改于: 2023-12-03 15:01:43.834000             🧑  作者: Mango
JavaScript 数组的 find() 方法可以用于查找符合指定条件的数组元素。它接收一个回调函数作为参数,回调函数用于检查数组每个元素是否符合条件。
array.find(callback[, thisArg])
find() 方法将返回符合条件的第一个数组元素,如果没有符合条件的元素,则返回 undefined。
const array = [1, 2, 3, 4, 5];
// 查找第一个大于或等于 3 的元素
const result = array.find(element => element >= 3);
console.log(result); // 3
// 没有符合条件的元素,返回 undefined
const notFound = array.find(element => element > 5);
console.log(notFound); // undefined