Skip to content

tm_concat Function

tm_concat takes two or more lists and combines them into a single list.

Examples

sh
tm_concat(["a", ""], ["b", "c"])
[
  "a",
  "",
  "b",
  "c",
]