Concatenator
Last updated
Last updated
[data/array/Concatenator]
Concatenates two arrays. Example:
[1,2]@0 recieved via a
[3,4]@0 recieved via b
[1,2,3,4]@0 sent via concatenated
More: https://github.com/Cranq-io/cranq-tutorials/blob/main/reference/2_constructing_data/2_4_merge_concat/README.md#example---concatenating-arrays
Keywords: append, join, prepend
a: any[]
Receives array a
to concatenate.
Example:
[1,2]
b: any[]
Receives array b
to concatenate.
Example:
[3,4]
concatenated: (any[] or any[])
Sends the concatenated array. Example: [1,2,3,4]