fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

@nzakas there's no check that fails, because the array is empty, so the result is true. The every method checks every array element until one element fails the check, which is the condition for it returning false.

@nzakas Also in JavaScript:

[].every(()=>false) === true

😅

@functionalscript @ziadkh0 @nzakas
Not limited to Javascript; this is true in any language that implements a universal quantification function. (E.g., Iterator::all in Rust.)

@ziadkh0 @nzakas This is consistent with basic first order logic. Let X= Ø (the set of all object is the empty set). Then assume there is a proposition for which it is NOT true that ∀x∈X P(x) (for all x part of X, P(x) is true), that means that ∃x∈X (there exists an x part of X) such that NOT P(x). However, this is a contradiction, since X= Ø (X is the empty set). Hence ∀x∈X P(x), is true for every arbitrary proposition P.

@nzakas

Nice! Array.some works in the opposite manner:

[].every(() => false) === true
[].some(() => true) === false

@nzakas It’s “vacuously true”

Also [].every(x => x === true) === true

The condition doesn’t matter for an empty array!