array contains these values code example
Example 1: javascript method to see if item exists in array
var fruits = ["Apple", "Banana", "Mango", "Orange", "Papaya"];
if(fruits.indexOf("Mango") !== -1){
alert("Value exists!")
} else{
alert("Value does not exists!")
}
Example 2: check if array does not contain 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"]));