Files
30-seconds-of-code/javascript/snippets/includes-any.md
2023-05-01 22:35:56 +03:00

517 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Check if array includes any values snippet
array
book-stopper 2020-10-20T23:02:01+03:00

Checks if at least one element of values is included in arr.

  • Use Array.prototype.some() and Array.prototype.includes() to check if at least one element of values is included in arr.
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