> For the complete documentation index, see [llms.txt](https://til.yulrizka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.yulrizka.com/unix/jq-counting-lenght-of-an-array.md).

# jq counting lenght of an array

```
echo '[{"username":"user1"},{"username":"user2"}]' | jq '. | length'
```
