# objectValues

## Description

Creates an array/list of the attribute/property values of an object.

## Input / Parameter

| Name   | Description                                      | Input Type | Default | Options | Required |
| ------ | ------------------------------------------------ | ---------- | ------- | ------- | -------- |
| object | The object to get the attribute/property values. | Object     | -       | -       | Yes      |

## Output

| Description                                              | Output Type |
| -------------------------------------------------------- | ----------- |
| Returns the array/list of the attribute/property values. | Array/List  |

## Callback

N/A

## Video

## Example

![](https://399701567-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwmJ1RKjM2uNFaL6fO3Xu%2Fuploads%2Fgit-blob-551f1f923cb4070fc777054f36789381660c1019%2FobjectValues-step-1.png?alt=media)

Given the above object, `objectValues` function will return this list:

```JS
["John", "john@example.com", "23", "123456"]
```

## Links

* See also `objectKeys` and `objectAttr`
