Reversing an array reorder the items from the last one to the first one.
Examples:
[] => []
[1] => [1]
[1,2,3,4] => [4,3,2,1]
Reversing an array reorder the items from the last one to the first one.
Examples:
[] => []
[1] => [1]
[1,2,3,4] => [4,3,2,1]
kind: term layout: