570 B
570 B
title, tags, expertise, author, cover, firstSeen
| title | tags | expertise | author | cover | firstSeen |
|---|---|---|---|---|---|
| Check if array has many matches | array | beginner | chalarangelo | blog_images/interior-2.jpg | 2021-07-11T05:00:00-04:00 |
Checks if an array has more than one value matching the given function.
- Use
Array.prototype.filter()in combination withfnto find all matching array elements. - Use
Array.prototype.lengthto check if more than one element matchfn.
const hasMany = (arr, fn) => arr.filter(fn).length > 1;
hasMany([1, 3], x => x % 2); // true
hasMany([1, 2], x => x % 2); // false