> For the complete documentation index, see [llms.txt](https://daseldocs.tomwright.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://daseldocs.tomwright.me/v2/functions/first.md).

# First

First expect no arguments.

It can be used with a list, and returns the first item in the list.

## Example

```
$ echo '["a","b","c"]' | dasel -r json 'first()'
"a"
```
