concat
Function
concat
takes two or more lists and combines them into a single list.
Examples
> concat(["a", ""], ["b", "c"])
[
"a",
"",
"b",
"c",
]
concat
Functionconcat
takes two or more lists and combines them into a single list.
> concat(["a", ""], ["b", "c"])
[
"a",
"",
"b",
"c",
]