I am looking to count the number of entries I have in an array in Twig. This is the code I\'ve tried:
{%for nc in notcount%} {{ nc|length }} {%endfor%} >
{%for nc in notcount%} {{ nc|length }} {%endfor%}
Just use the length filter on the whole array. It works on more than just strings:
{{ notcount|length }}