I want to set the value of my twig variable from an external js file.
I have this code in twig:
{% set items = null }
{% include "list.twig" with { itemList: items} %}
And I want to set the items from an external Js. How can I update the value of the items from Js ?