set.reverse()
Reverse the order of the Set elements.
Lazy loading: |
Description
The reverse()
method reverses the order of the Set elements.
The source Set isn’t changed.
Examples
// `toSet()` converts an Array to a Set.
let set = [1, 2, 3].toSet()
set.reverse()
{
data: [
3,
2,
1
]
}
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!