JS片段

Array.prototype.find()

find() 方法返回数组中满足提供的测试函数第一个元素的值。否则返回 undefined

const found = array1.find(element => element > 10);

 

posted on 2021-08-07 16:31  screamo  阅读(26)  评论(0编辑  收藏  举报

导航