Answers for "js includes array of string"

4

js check if string includes from array

wordsArray = ['hello', 'to', 'nice', 'day']
yourString = 'Hello. Today is a nice day'.toLowerCase()
result = wordsArray.every(w => yourString.includes(w))
console.log('result:', result)
Posted by: Guest on October-13-2021
1

js check if string includes from array

const found = arrayOfStrings.find(v => str.includes(v));
Posted by: Guest on October-13-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language