PhixFlow Help

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 3 Next »

Function: concatenateList()

Concatenate 2 lists and return the result as a new list.

Syntax

concatenateList(list1, list2)

ArgumentTypeDescription
list1ArrayThe first list
list2ArrayThe second list

Examples

concatenateList([1,2], [3,4])

Returns [1,2,3,4].

See Also

  • No labels