> ## Content Index
> Fetch the complete content index at: https://getpublii.com/dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# {{join}} helper

- URL: https://getpublii.com/dev/join-helper/
- Published: 2019-07-11T18:20:10.541Z
- Updated: 2024-02-08T09:21:43.833Z
- Description: This helper creates a one string from given values, separated by its first argument. Syntax: {{join separator value1 value2 value3}} Example: {{join "," "a" "b"…
- Author: Tomasz Dziuda
- Tags: Helpers

This helper creates a one string from given values, separated by its first argument.

Syntax:

```handlebars
{{join separator value1 value2 value3}}
```

Example:

```handlebars
{{join "," "a" "b" "c" "d"}}
```

Example output:

```handlebars
"a,b,c,d"
```
