_.filter(collection, [predicate=_.identity])
_.filter(collection, [predicate=_.identity])
用于过滤集合中满足指定条件的元素,并返回一个新的数组。
collection
:要过滤的集合,可以是数组、对象或类数组对象。predicate
(可选):用于过滤每个元素的条件函数,默认为_.identity
函数。
应用举例:
javascript
// 原始集合
const collection = [1, 2, 3, 4, 5];
// 过滤出所有偶数
const result = _.filter(collection, (n) => n % 2 === 0);
console.log(result);
// 输出:[2, 4]
在这个例子中,_.filter
方法过滤了原始集合中的所有偶数,并返回了一个新的数组 [2, 4]
。