Map Values | MAP_VALUES

Syntax

MAP_VALUES( [value] )

Parameters

value
A MAP / OBJECT.

Return Value

Returns ARRAY containing the values in the VALUE

Description

Get the values of the entries in a MAP / OBJECT.

Examples

# VALUE is ["a" => 1, "b" => 2]
MAP_VALUES(VALUE) # returns [1, 2]