Skip to main content

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