array1
(array): The first array to merge. Default value is an empty array.array2
(array): The second array to merge. Default value is an empty array.result
(array): The merged array containing all elements from array1
followed by all elements from array2
.array1
input of the Merge node.array2
input of the Merge node.result
output.fruits
: ["apple", "banana", "orange"]
vegetables
: ["carrot", "broccoli"]
fruits
to the array1
input and vegetables
to the array2
input of the Merge node. The result
output will be:
result
output of one node to the array1
input of the next.