Skip to main content

Object Values

Module Info:

moduleType: "internal",
moduleName: "objectValues"

Description

The objectValues function receives an object and returns an array with its values.

Inputs

NameTypeRequired
objectobject

Outputs

NameType
valuesArray<any>

Examples

Inputs Outputs
object keys
{ name: "John", age: 22 } [ "John", 22 ]
{ city: "New York", state: "New York" } [ "New York", "New York" ]