Tell us what’s happening:
Describe your issue in detail here.
I need to understand why I am not progressing past this stage
function quickCheck(arr, elem) {
// Only change code below this line
if (elem >= 0) {
arr.indexOf(elem);
return true
} else {
return false
}
// Only change code above this line
}
console.log(quickCheck(["squash", "onions", "shallots"], "mushrooms"));
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36
Challenge: Basic Data Structures - Check For The Presence of an Element With indexOf()