> For the complete documentation index, see [llms.txt](https://data-js.gitbook.io/data-js/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://data-js.gitbook.io/data-js/untitled.md).

# Add any character or letter between values ​​in the array

For example, if you want to add a comma between array values, please:

```
var app = new Data(["Hello world",12,16,18],{
   join: ", " 
});
```
