1{# defined works with variable names #}
2{% if foo is defined %}
3 ...
4{% endif %}
5
6{# and attributes on variables names #}
7{% if foo.bar is defined %}
8 ...
9{% endif %}
10
11{% if foo['bar'] is defined %}
12 ...
13{% endif %}
1{% set foo = 'bar' %} {# string #}
2{% set foo = 12 %} {# integer #}
3{% set foo = [1, 2] %} {# array #}
4{% set foo = {'foo': 'bar'} %} {# objet #}
5