“Verifique se a matriz não contém string js” Respostas de código

Verifique se a matriz não contém valor JavaScript

var fruits = ["Banana", "Orange", "Apple", "Mango"];

var n = fruits.includes("Mango"); // true

var n = fruits.includes("Django"); // false
Vivacious Vendace

Verifique se a matriz não contém string js

function checkInput(input, words) {
 return words.some(word => input.toLowerCase().includes(word.toLowerCase()));
}

console.log(checkInput('"Definitely," he said in a matter-of-fact tone.', 
["matter", "definitely"]));
Vu Nguyen

Verifique se a matriz não contém string js

function checkInput(input, words) {
 return words.some(word => new RegExp(word, "i").test(input));
}

console.log(checkInput('"Definitely," he said in a matter-of-fact tone.', 
["matter", "definitely"]));
Vu Nguyen

Respostas semelhantes a “Verifique se a matriz não contém string js”

Perguntas semelhantes a “Verifique se a matriz não contém string js”

Mais respostas relacionadas para “Verifique se a matriz não contém string js” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código