![]() |
VOOZH | about |
The some() method checks if any array elements pass a test provided as a callback function, returning true if any do and false if none do. It does not execute the function for empty elements or alter the original array.
arr.some(callback(element,index,array),thisArg);Returns true if any of the array elements pass the test, otherwise false.
Example: In this example the Function checkAvailability checks if a value exists in an array using some(). Function func tests checkAvailability to see if 2 and 87 exist in the array.
true false
Example : In this example the Function isGreaterThan5 checks if any element in an array is greater than 5. Function func uses some() method to verify if any element in array satisfies condition.
true
Example : In this example the Function isGreaterThan5 checks if any element in an array is greater than 5. Function func uses some() to verify if any element in array satisfies condition.
false
We have a complete list of Javascript Array methods, to check those please go through this Javascript Array Complete reference article.