Lava Filters - Indexer
Category:Arrays
Description:Returns the item at the specified index location in an array. Note that array numbering starts from zero, so the first item in an array is referenced with [0].
Input:
Lava: {% assign fruits = "orange apple banana orange" | Split:' ' %}
{{ fruits[2] }}
Output: banana