getNumberList()

This function returns the values stored in a number list variable, which was previously created using the setNumberList() function.


Bash
getNumberList(variableName) #Output: Number list


Examples

Expression parser

Description

Bash
getNumberList("myNumberList")

This example returns the values stored in the variable named "myNumberList", e.g.:

[1,2,3]

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

variableName

text

The name of the stored variable.

Output

This function returns a number list

To return the value you must have created the variable before, using the setNumberList() function within the same expression.


📚 Use cases and examples