Values
- 18 May 2022
- 1 Minute to read
- DarkLight
- PDF
Values
- Updated on 18 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Returns a list of values contained in the given object.
Function signature
VALUES(object: Object) => Array
Parameter | Description |
---|---|
Object | Object to check |
Examples
Formula | Return value |
---|---|
VALUES({ a: 1, b: "2" }) | [1,"2"] |
VALUES({}) | [] |
Was this article helpful?