Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 1


Q: 

Check out the following code:

{# source for homepage.twig #}

{{ include('_otherTemplate.twig', {'color': 'blue'}) }}
{# source for _otherTemplate.twig #}

{{ include('_thirdTemplate.twig', {
    'color': 'red',
    'number': 5
}) }}
{# source for _thirdTemplate.twig #}

{% set number = 10 %}

<h4>
    {{ color|default('green') }},
    {{ number|default(25) }},
    {{ name|default('Leanna') }},
    {{ food|default('tomato') }}
</h4>

Now, suppose that homepage.twig is rendered and passed a food variable set to pizza. What will be printed inside the h4 tag?

userVoice