Data / Map data/map_get

Map Get

Retrieves a value from a Map by key.

Note: Returns null and found=false if the key does not exist. Use Is Null to handle missing values safely.

Inputs

NameTypeOptionalDescription
map any The Map to read from.
key string The key to look up.

Outputs

NameTypeDescription
value any The value at the key (null if absent).
found boolean True if the key exists in the map.

Properties

KeyTypeDefaultDescription
key string "" Key (fallback)