JavaScript中的Array.prototype.find


本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/09/07/JavaScript%E4%B8%AD%E7%9A%84Array-prototype-find/

摘要

本文主要讲述了:

  1. 作用

正文

作用

Array.prototype.find()接受一个回调函数作为第一个参数

  • 返回数组中,第一个符合回调函数要求的,元素值
  • 如果没有符合要求的元素,返回undefined

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const foo = [3, 4, 5, 6, 3, 4];

// 4
console.log(
foo.find(function (item) {
if (item === 4) {
return true;
}
})
);

// undefined
console.log(
foo.find(function (item) {
if (item === 7) {
return true;
}
})
);

参考资料

本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/09/07/JavaScript%E4%B8%AD%E7%9A%84Array-prototype-find/


本文对你有帮助?请支持我


支付宝
微信