Sure! Here's an implementation of myIncludes function in JavaScript:
This function accepts an array and a searchValue as arguments. It then loops through the array and checks if each element in the array is equal to the searchValue. If it finds a match, it immediately returns true. If it loops through the entire array without finding a match, it returns false.
Note that we're using a for loop to iterate over the array and we're checking each element in the array for a match with the searchValue using the strict equality operator (===). If a match is found, we immediately return true. If no match is found by the end of the loop, we return false.
This implementation does not use the built-in .includes() method, as requested in the problem statement.