every()

Test if every array element passes the given function test.

Signature

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

Description

The every() method tests if every element of the array passes the predicate test.

Parameters

Parameter Type Required Description

predicate

Function

Yes

Function to test the array elements.

predicate parameters: None

Return value

Type Description

Boolean

Status of predicate applied to all array elements:
true = Every element passes the predicate test.
false = At least one element doesn’t pass the predicate test.

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!