> ## Documentation Index
> Fetch the complete documentation index at: https://docs.xano.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Objects

### <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> Get Keys

```javascript theme={null}
object.keys {
  value = $object
} as $keys
```

| Parameter | Purpose                                                     | Example  |
| --------- | ----------------------------------------------------------- | -------- |
| \$object  | The variable that the object you'd like to target is stored | \$object |
| as        | The variable that you want to store the result              | keys     |

<Accordion title="Example">
  ```javascript theme={null}
  object.keys {
    value = $object
  } as $keys
  // $keys now contains an array of the object's property names
  ```

  <img src="https://mintcdn.com/xano-997cb9ee/pz6e9Ndbn8i3u8Zz/images/6d215995-image.jpeg?fit=max&auto=format&n=pz6e9Ndbn8i3u8Zz&q=85&s=05e0749a1e66e98ce325ba7b7252d841" alt="" width="315" height="40" data-path="images/6d215995-image.jpeg" />
</Accordion>

### <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> Get Values

```javascript theme={null}
object.values {
  value = $object
} as $values
```

| Parameter | Purpose                                                     | Example  |
| --------- | ----------------------------------------------------------- | -------- |
| \$object  | The variable that the object you'd like to target is stored | \$object |
| as        | The variable that you want to store the result              | values   |

<Accordion title="Example">
  ```javascript theme={null}
  object.values {
    value = $object
  } as $values
  // $values now contains an array of the object's property values
  ```

  <img src="https://mintcdn.com/xano-997cb9ee/WBQXG-4Ngk82eYAW/images/ffc5a609-image.jpeg?fit=max&auto=format&n=WBQXG-4Ngk82eYAW&q=85&s=8c3d36b87f6888d5cb217ca2bfab71f3" alt="" width="322" height="40" data-path="images/ffc5a609-image.jpeg" />
</Accordion>

### <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> Get Entries

```javascript theme={null}
object.entries {
  value = $object
} as $entries
```

| Parameter | Purpose                                                     | Example  |
| --------- | ----------------------------------------------------------- | -------- |
| \$object  | The variable that the object you'd like to target is stored | \$object |
| as        | The variable that you want to store the result              | entries  |

<Accordion title="Example">
  ```javascript theme={null}
  object.entries {
    value = $object
  } as $entries
  // $entries now contains an array of key-value pairs from the object
  ```

  <img src="https://mintcdn.com/xano-997cb9ee/o7zunZFYmjx8RZ8N/images/f8357b6e-image.jpeg?fit=max&auto=format&n=o7zunZFYmjx8RZ8N&q=85&s=09e1c1d2cbd2e165b959ce930cc4904a" alt="" width="326" height="39" data-path="images/f8357b6e-image.jpeg" />
</Accordion>
