how to check if number exists in array in javascript 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: Checking whether a value exists in an array javascript
const fruits = ['apple', 'banana', 'mango', 'guava'];
function checkAvailability(arr, val) {
return arr.some(arrVal => val === arrVal);
}
checkAvailability(fruits, 'kela');
checkAvailability(fruits, 'banana');