ArrayAppend
Method Signature
ArrayAppend(array=[modifiableArray], value=[any], merge=[boolean])Arguments
Argument
Type
Required
Description
Default
Examples
Append a value to an array
someArray = [
1,
2,
3
];
arrayAppend( someArray, 4 );
writeOutput( JSONSerialize( someArray ) );
Append a value to an array using the Array member function
Append more than one item
Additional Examples
Related
Last updated
Was this helpful?
