concat takes two or more lists and combines them into a single list.
concat
> concat(["a", ""], ["b", "c"]) [ "a", "", "b", "c", ]
On this page: