Array Append
Appends the elements of one array to another.
Appends all elements from the Append array to the end of the Array.
The operation modifies the Array by adding the elements from the Append array to it.
Example#
- Array:
[1, 2] - Append:
["a", "b"] - Output Array:
[1, 2, "a", "b"]
Inputs#
| Port | Description |
|---|---|
| Triggers the node's execution. | |
invalid port type: indexable Array |
The array to which elements will be appended. |
invalid port type: indexable Append |
The array whose elements will be appended. |
Outputs#
| Port | Description |
|---|---|
| Triggers the next node. | |
| The modified array with the appended elements. |
ID: core/array-append@v1