Reverse Array
Last updated
Last updated
Flips the order of items in a list, making the last element first and the first element last. It creates a new reversed list without changing the original.
array
The list to be reversed
List
Yes
value
The reversed list
List
Drag the Reverse Array node into your graph.
Connect your list (like [Red, Green, Blue]
) to the "array" input.
The output will be the list in reverse order (e.g., [Blue, Green, Red]
).
This node preserves the original list and outputs a new reversed copy.
Useful for changing the visual priority or sequence of design elements.
Reversing Color Gradients: Flip a color sequence to create an opposite gradient direction.
Priority Inversion: Transform a list sorted by importance to focus on different priorities.
Visual Hierarchy Experimentation: Test alternative arrangements of design elements by reversing their order.
: For arranging items based on specific criteria rather than simply reversing them.
: For selectively including or excluding items from a list.