1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00
Files
til/jq/get-the-last-item-from-an-array.md
2024-01-14 14:34:35 -06:00

636 B

Get The Last Item From An Array

There are two ways to get the last item from an array using jq.

The one that is perhaps a bit more intuitive is to pipe the array to the last function.

$ echo '[1,2,3]' | jq '. | last'
3

Another approach is to use an array index expression to positionally grab the last element of the array. As is the case with some languages and libraries, -1 positionally refers to the last item in the array.

$ echo '[1,2,3]' | jq '.[-1]'
3