427 B
427 B
title, tags
| title | tags |
|---|---|
| includesAny | array,beginner |
Checks if at least one element of values is included in arr.
- Use
Array.prototype.some()andArray.prototype.includes()to check if at least one element ofvaluesis included inarr.
const includesAny = (arr, values) => values.some(v => arr.includes(v));
includesAny([1, 2, 3, 4], [2, 9]); // true
includesAny([1, 2, 3, 4], [8, 9]); // false