Handlebar Helper Function: Concat

Combines multiple values into a single string.

ParameterTypeDescription
value1anyRequired. The first value to concatenate.
value2anyThe second value to concatenate.
...anyAdditional values to concatenate.

The function returns a single string with all input values concatenated together. Each value is converted to a string representation before concatenation. Arrays are converted by concatenating their elements as strings. Null values are skipped during concatenation. The function throws an exception if no arguments are provided.