568 B
568 B
title, type, language, tags, author, cover, dateModified
| title | type | language | tags | author | cover | dateModified | |
|---|---|---|---|---|---|---|---|
| Check if array has only one match | snippet | javascript |
|
chalarangelo | interior-10 | 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 withfnto find all matching array elements. - Use
Array.prototype.lengthto check if only one element matchesfn.
const hasOne = (arr, fn) => arr.filter(fn).length === 1;
hasOne([1, 2], x => x % 2); // true
hasOne([1, 3], x => x % 2); // false