check if a value is present in an array javascript code example
Example 1: get if there is a value in an array node js
myArray = Array();
if(myArray.includes(valueWeSearch))
{
}
Example 2: 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 3: see if array contains array javascript
const found = arr1.some(r=> arr2.indexOf(r) >= 0)