Skip to main content

https://mintcdn.com/xano-997cb9ee/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f Get Keys

object.keys {
  value = $object
} as $keys
ParameterPurposeExample
$objectThe variable that the object you’d like to target is stored$object
asThe variable that you want to store the resultkeys
object.keys {
  value = $object
} as $keys
// $keys now contains an array of the object's property names

https://mintcdn.com/xano-997cb9ee/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f Get Values

object.values {
  value = $object
} as $values
ParameterPurposeExample
$objectThe variable that the object you’d like to target is stored$object
asThe variable that you want to store the resultvalues
object.values {
  value = $object
} as $values
// $values now contains an array of the object's property values

https://mintcdn.com/xano-997cb9ee/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f Get Entries

object.entries {
  value = $object
} as $entries
ParameterPurposeExample
$objectThe variable that the object you’d like to target is stored$object
asThe variable that you want to store the resultentries
object.entries {
  value = $object
} as $entries
// $entries now contains an array of key-value pairs from the object