Search Nomad documentationType '/' to Search»concat Functionconcat takes two or more lists and combines them into a single list.»Examples> concat(["a", ""], ["b", "c"]) [ "a", "", "b", "c", ] > concat(["a", ""], ["b", "c"]) [ "a", "", "b", "c", ] Copy