ArrayMerge
Method Signature
ArrayMerge(array1=[array], array2=[array], leaveIndex=[boolean])Arguments
Argument
Type
Required
Description
Default
Examples
Standard function syntax
fruit = [
"apple",
"banana",
"orange"
];
veggies = [
"tomato",
"carrot",
"corn",
"peas",
"peppers"
];
healthyFoods = arrayMerge( fruit, veggies );
writeOutput( arrayToList( healthyFoods ) );
Member function syntax
Example where leaveIndex parameter is true
Additional Examples
Related
Last updated
Was this helpful?
