Check For The Presence of an Element With indexOf() code example
Example: Check For The Presence of an Element With indexOf()
function quickCheck(arr, elem) {
return arr.indexOf(elem) >= 0 ? true : false;
}
console.log(quickCheck(["squash", "onions", "shallots"], "mushrooms"));