Zachary Shilton 830140157d
website: remove obselete nav data (#10811)
* website: remove obselete sidebar_title frontmatter from docs

* website: bump to latest docs-page

* website: update plugin creation and registration docs

* website: fix broken links
2021-03-31 15:07:00 -04:00

21 lines
335 B
Plaintext

---
page_title: concat - Functions - Configuration Language
description: The concat function combines two or more lists into a single list.
---
# `concat` Function
`concat` takes two or more lists and combines them into a single list.
## Examples
```shell-session
> concat(["a", ""], ["b", "c"])
[
"a",
"",
"b",
"c",
]
```