which of the following is the preferred way to check if x has a false value?
a. Using a for loop to iterate through the array and check for any false values
b. Using the array.includes() method to check if the array contains a false value
c. Using the array.some() method to check if any of the array elements are false
d. Using the array.indexOf() method to check for the index of the first false value in the array