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

Compare with Current View Page History

« Previous Version 6 Next »

This function combines two separate lists into a single list. 

The order of elements is respected and the result may contain repeated elements.

Operator
list1 APPEND list2 #Output: List
Examples
Parser expressionDescription
[1, 2, 3] APPEND [3, 4, 4]

This example returns

 [1, 2, 3, 3, 4, 4]

["blue", "red", "red"] APPEND ["red", "green"]

This example returns

["blue", "red", "red", "red", "green"]

Additional information

Parameters used in this function

ParameterInput (data type)Description
list1

TEXT / NUMBER LIST

Any type of text or number list.
list2

TEXT / NUMBER LIST

Any type of text or number list.
Output

This function returns a LIST