array.every()

This method operates on an array. You typically fetch documents from a collection as a set, not an Array. For the equivalent Set method, see set instance methods.

For differences between Sets and Arrays, see Sets vs. Arrays.

Test if every element of an Array matches a provided predicate.

Signature

every(predicate: (A => Boolean | Null)) => Boolean

Description

Tests if every element of the calling Array matches a provided predicate function.

Parameters

Parameter Type Required Description

predicate

Predicate function

Yes

Anonymous predicate function that:

  • Accepts an Array element as its only argument. You can pass in this argument using arrow function syntax.

  • Returns Boolean or Null.

The method returns true if the predicate is true for every element in the Array.

Return value

Type Description

Boolean

If true, the predicate evaluates to true for every element of the Array. Otherwise, false.

Examples

let iter = [1, -2, 3]
iter.every(v => v > 0)
false

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!