Files
30-seconds-of-code/snippets/has-one.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

22 lines
528 B
Markdown

---
title: Check if array has only one match
tags: array
author: chalarangelo
cover: interior-10
firstSeen: 2021-07-04T05:00:00-04:00
---
Checks if an array has only 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 only one element matches `fn`.
```js
const hasOne = (arr, fn) => arr.filter(fn).length === 1;
```
```js
hasOne([1, 2], x => x % 2); // true
hasOne([1, 3], x => x % 2); // false
```