Files
30-seconds-of-code/snippets/hasMany.md
Angelos Chalaris 8a6b73bd0c Update covers
2023-02-16 22:24:28 +02:00

22 lines
534 B
Markdown

---
title: Check if array has many matches
tags: array
author: chalarangelo
cover: interior-2
firstSeen: 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 with `fn` to find all matching array elements.
- Use `Array.prototype.length` to check if more than one element match `fn`.
```js
const hasMany = (arr, fn) => arr.filter(fn).length > 1;
```
```js
hasMany([1, 3], x => x % 2); // true
hasMany([1, 2], x => x % 2); // false
```