Files
liquid/filters/first.md
2016-04-02 18:46:32 -04:00

664 B

title
title
first

Returns the first item of an array.

Input

```liquid {% raw %} {% assign my_array = "apples, oranges, peaches, plums" | split: ", " %}

{{ my_array.first }} {% endraw %}


<p class="code-label">Output</p>
```text
{% assign my_array = "apples, oranges, peaches, plums" | split: ", " %}

{{ my_array.first }}

Input

```liquid {% raw %} {% assign my_array = "zebra, octopus, giraffe, tiger" | split: ", " %}

{{ my_array.first }} {% endraw %}


<p class="code-label">Output</p>
```text
{% assign my_array = "zebra, octopus, giraffe, tiger" | split: ", " %}

{{ my_array.first }}