ArrayToList
Method Signature
ArrayToList(array=[array], delimiter=[String], initialValue=[any])Arguments
Argument
Type
Required
Description
Default
Examples
Retrieve an array as a list
someArray = [
1,
2,
3,
4
];
someList = arrayToList( someArray, "|" );
writeOutput( someList );
Retrieve an array as a list using the Array member function
Additional Examples
Related
Last updated
Was this helpful?
