how to get the array number if it has a certain value js code example
Example 1: check if array does not contain value javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
var n = fruits.includes("Mango");
var n = fruits.includes("Django");
Example 2: check if an element is already in an array
private boolean ZitAlInArray(int value, List<Integer> list) {
return array.indexOf(value) > -1;
}
private boolean zitAlInArray(int[] array, int index) {
for (int i = 0; i < index; i++) {
if (array[i] == array[index]) {
return true;
}
}
return false;
}