Rename js snippets

This commit is contained in:
Angelos Chalaris
2023-05-19 20:23:47 +03:00
parent 82a614e42e
commit 9d032ce05e
305 changed files with 70 additions and 70 deletions

View File

@ -0,0 +1,23 @@
---
title: Check if array has only one match
type: snippet
language: javascript
tags: [array]
author: chalarangelo
cover: interior-10
dateModified: 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
```