Expression functionsArray OperationsconcatOn this pageconcatThe two arrays joined end to end concat(first: array, second: array) -> array Arguments NameTypefirstarraysecondarray Example {{ concat([1, 2], [3]) }} Returns [1, 2, 3].