Skip to main content
Version: 26.1 (stable)

Array

An Array data variable holds a list of values of the same type. The Array elements may be of the type Boolean, Float, Integer or String.

An array stores its values in a specific order. Each value has an index that defines its position within the array.

Accessing Array Values

Item by Index

Returns a single value at the specified position. Indexes start at 0 — for example, given [12, 23, 34, 45, 56], index 0 returns 12 and index 4 returns 56.

Array

Returns all values at once. Use this when connecting the variable to a 2D Plot to plot the entire array.