Skip to main content

https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8 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/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8 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/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8 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