JOIN (REPEAT)

Join repeat answers with a separator

Syntax

JOIN(separatorString, repeatvalue)

Example

concat('The products ordered are: ', join('\n', {{prodname}}))

returns something like:

The products ordered are:
eggs
potatoes
milk

Notes

Returns the concatenation of the repeated answer using the first argument as a separator.
Add line breaks with '/n'.

Related

JOIN (STRING)
CONCAT