It concatenates the elements of an array to form a single string.
{{ [1, 2, 3]|join }}
Result
123
The join parameter defines the separator between the elements along which the concatenation happens.
{{ [1, 2, 3]|join('|') }}
Result
1|2|3
It concatenates the elements of an array to form a single string.
{{ [1, 2, 3]|join }}
123
The join parameter defines the separator between the elements along which the concatenation happens.
{{ [1, 2, 3]|join('|') }}
1|2|3