ArrayToList
Last updated
Was this helpful?
Last updated
Was this helpful?
Used to iterate over an array and run the function closure for each item in the array.
array
array
true
The array to join together
delimiter
String
false
The character to use as a separator
,
initialValue
any
false
Uses the arrayToList function with a pipe delimiter to retrieve an array as a list
Result: "1|2|3|4"
Uses the Array member function to retrieve an array as a list
Result: "Jerry,Elaine,Kramer,George"