The some() method of an array returns true if at least one element in the array passes the test in the provided function, or it returns false.
const numbers = [1, 2, 3, 4, 5];
// Checks whether an element is even
const even = (no) => no % 2 === 0;
const numbersSomeEven = numbers.some(even);
console.log(numbersSomeEven);
// true