ArrayAppend
Append a value to an array
Method Signature
Arguments
Argument
Type
Required
Description
Default
array
modifiableArray
true
The array to which the element should be appended.
value
any
true
The element to append. Can be any type.
merge
boolean
false
If true, the value is assumed to be an array and the elements of the array are appended to the array. If false, the value is appended as a single element.
false
Examples
Related
Last updated