js array includse one elment from orraty code example
Example 1: javascript check if elements of one array are in another
const found = arr1.some(r=> arr2.includes(r))
Example 2: array includes
let storyWords = ['extremely', 'literally', 'actually', 'hi', 'bye', 'okay']
let unnecessaryWords = ['extremely', 'literally', 'actually' ];
let betterWords = storyWords.filter(function(word) {
return !unnecessaryWords.includes(word);
});
console.log(betterWords) // ['hi' 'bye' 'okay]