lookup() Function

Returns location of data within multiple values, or valueIfNotPresent.

Syntax

lookup( multipleValues, dataToLookup, valueIfNotPresent )

multipleValues: (Any Type) Values to lookup within.

dataToLookup: (Any Type) Value to lookup within multipleValues.

valueIfNotPresent: (Any Type) Value to return if dataToLookup is not present.

Returns

Integer

Examples

lookup({"a", "b", "c", "d"}, "c", -1) returns 3

Open in Github Built: Thu, Feb 23, 2023 (02:59:22 PM)

On This Page

FEEDBACK