every
Check if every item in a collection satisfies a predicate
Last updated
Check if every item in a collection satisfies a predicate
Last updated
Returns a Boolean
indicating if every item in the input collection
satisfies the provided predicate
function. It works exactly like , except it also accepts Sets
, Maps
& Objects
as inputs, and asynchronous predicates.
Here, we simply check if every item in our numbers array is an even number. Luckily, that's the case.
every
also works on Objects
, Sets
, and Maps
.
Here, our predicate is asynchronous (notice the async
keyword before the function definition), which makes some return a Promise
. We then (no pun intended) simply use the await
keyword to retrieve the result.