Finders Keepers
Posted 笨鸟房子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Finders Keepers相关的知识,希望对你有一定的参考价值。
写一个 function,它浏览数组(第一个参数)并返回数组中第一个通过某种方法(第二个参数)验证的元素。
思路
Array.filter()
的返回值是通过测试元素的新数组。截取到这个数组索引为0的值即可。
function find(arr, func) { return arr.filter(func)[0]; }
以上是关于Finders Keepers的主要内容,如果未能解决你的问题,请参考以下文章