a
(array): The first input array to concatenate. Defaults to an empty array if not provided.b
(array): The second input array to concatenate. Defaults to an empty array if not provided.result
(array): The concatenated output array containing all elements from the a
and b
input arrays, in that order.a
input of the Concat node.b
input of the Concat node.result
output of the node.["apple", "banana"]
connected to the a
input["cherry", "date"]
connected to the b
inputresult
output:
a
input will come before the elements from the b
input in the concatenated result
array.