Prepare repository for merge

This commit is contained in:
Angelos Chalaris
2023-05-01 22:35:56 +03:00
parent fc4e61e6fa
commit b3ad01863a
578 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,22 @@
---
title: Check if array has many matches
type: snippet
tags: [array]
author: chalarangelo
cover: interior-2
dateModified: 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
```