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

Version 1 Next »

Function: concatenateList()

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

Syntax

concatenateList(list1, list2)

Argument Type Description
list1 Array The first list
list2 Array The second list

Examples

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

Returns [1,2,3,4].

See Also

  • No labels