Skip to content

Latest commit

 

History

History
73 lines (61 loc) · 2.34 KB

File metadata and controls

73 lines (61 loc) · 2.34 KB

Function: ArrayToList

Used to iterate over an array and run the function closure for each item in the array.

Method Signature

ArrayToList(array=[array], delimiter=[String], initialValue=[any])

Arguments

Argument Type Required Description Default
array array true The array to join together
delimiter String false The character to use as a separator ,
initialValue any false

Examples

Related