javascript check if elements of one array are in another

JavaScript
const found = arr1.some(r=> arr2.includes(r))
Source

Also in JavaScript: