ArrayMerge
This function creates a new array with data from the two passed arrays.
To add all the data from one array into another without creating a new array see the built in function ArrayAppend(arr1, arr2, true).
Method Signature
Arguments
Argument | Type | Required | Description | Default |
---|---|---|---|---|
|
|
| The first array to merge | |
|
|
| The second array to merge | |
|
|
| Set to true maintain value indexes - if two values have the same index it will keep values from array1 |
|
Examples
Related
Last updated