๐Ÿ“šย Reference


๐Ÿ“œ Chapter


find()

some()


arr.some(callback[, thisArg])
const array = [1, 2, 3, 4, 5];

// checks whether an element is even
const even = (element) => element % 2 === 0;

console.log(array.some(even));
// expected output: true