set.isEmpty()

Test if the Set is empty.

Signature

isEmpty() => Boolean

Description

The isEmpty() method tests if the Set is empty.

Parameters

None

Return value

Type Description

Boolean

Empty state of the Set:
true = The Set is empty.
false = The Set isn’t empty.

Examples

// `toSet()` converts an Array to a Set.
// In thise case, it creates an empty Set.
let set = [].toSet()
set.isEmpty()
true

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!