reverse()

Reverse the order of the array elements.

Signature

reverse(): Array<T>

Description

The reverse() method reverses the order of the array elements.

The source array isn’t changed.

Parameters

None

Return value

Type Description

Array

Array with element reversed from the order of the source array elements.

Examples

[1, 2, 3].reverse()
[
  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!