Question: Implement a findNumber(targetNumber) function that returns a new function that returns true if the number is present in a provided array and returns false otherwise.
Implement a findNumber(targetNumber) function that returns a new function that returns true if the number is present in a provided array and returns false otherwise.
var find5 = findNumber(5); // returns function that searches for 5
find5([1,2,4]); // returns false
find5([1,5,5]); // returns true
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
