array_reverse()
Learn how to use the array_reverse() function to reverse the order of the elements in a dynamic array.
Reverses the order of the elements in a dynamic array.
Syntax
array_reverse(
value)
Parameters
Name | Type | Required | Description |
---|---|---|---|
value | dynamic | ✔️ | The array to reverse. |
Returns
Returns an array that contains the same elements as the input array in reverse order.
Example
This example shows an array of words reversed.
print arr=dynamic(["this", "is", "an", "example"])
| project Result=array_reverse(arr)
Output
Result |
---|
[“example”,“an”,“is”,“this”] |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.