Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 437 Bytes

iterable.md

File metadata and controls

24 lines (19 loc) · 437 Bytes
layout title
page
Tests › iterable

← tests

iterable checks if a variable is an array or a traversable object:

{# evaluates to true if the foo variable is iterable #}
{% if users is iterable %}
    {% for user in users %}
        Hello {{ user }}!
    {% endfor %}
{% else %}
    {# users is probably a string #}
    Hello {{ users }}!
{% endif %}