append( array, value )
Appends a value or values to the given array, and returns the resulting array.
See also:
Keyword | Type | Description |
---|---|---|
|
Any Type Array |
The array to modify. |
|
Any Type or Any Type Array |
The value or values to append. |
Any Type Array
Only the first value parameter is required.
append({10, 20, 30, 40}, 50)
returns 10, 20, 30, 40, 50
append({}, {60, 70})
returns 60, 70
append({10, 20, 30, 40}, {50, 60, 70})
returns 10, 20, 30, 40, 50, 60, 70
append({"Red", "Green"}, {"Blue", "Yellow"}, {"Brown", "White"})
returns Red, Green, Blue, Yellow, Brown, White
Feature | Compatibility | Note |
---|---|---|
Portals | Compatible | |
Offline Mobile | Compatible | |
Sync-Time Custom Record Fields | Compatible | Can be used to create a custom record field that only evaluates at sync time. |
Real-Time Custom Record Fields | Incompatible | |
Process Reports | Incompatible | You cannot use this function to configure a process report. |
Process Events | Incompatible | You cannot use this function to configure a process event node, such as a start event or timer event. |
append() Function