Object Values
Module Info:
moduleType: "internal",
moduleName: "objectValues"
Description
The objectValues
function receives an object and returns an array with its values.
Inputs
Name | Type | Required |
---|---|---|
object | object | ✔ |
Outputs
Name | Type |
---|---|
values | Array<any> |
Examples
Inputs | Outputs |
---|---|
object | keys |
{ name: "John", age: 22 } | [ "John", 22 ] |
{ city: "New York", state: "New York" } | [ "New York", "New York" ] |