Values getter
Last updated
Last updated
[data/dictionary/Values getter]
Gets all values from the dictionary as an array. Example A:
{ "first": 1, "third": 3, "fifth": 5 } @0 received via dict
values
sends [ 1,3,5 ]@0
More: https://github.com/Cranq-io/cranq-tutorials/tree/main/reference/3_querying_data/3_1_getters
Keywords: dictionary, dict, get, values
dict: {string: any}
Receives the dictionary to extract the values from. Example: { "first": 1, "third": 3, "fifth": 5 }
values: {string: any}[string]
Sends the values of the dictionary as an array, Example: [ 1,3,5 ]