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)
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)
if Array includes string
function droids(arr) {
result = "These are not the droids you're looking for."
for (str of arr) {
if (str == 'Droids')
result = "Found Droids!"
}
return result;
}
js array string includes
if (new RegExp(substrings.join("|")).test(string)) {
// At least one match
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us