PhixFlow Help

Skip to end of metadata
Go to start of metadata

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

Compare with Current View Page History

« Previous Version 4 Next »

concatenateList(list1, list2) Concatenate 2 lists and return the result as a new list.

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