ArrayJoin
Syntax
ArrayJoin(array, [separator], [nullReplacement])Notes
Examples
Example 1
ArrayJoin([JSON array], “, ”)
Example 2
Example 3
Last updated
Was this helpful?
ArrayJoin(array, [separator], [nullReplacement])ArrayJoin([JSON array], “, ”)
Last updated
Was this helpful?
Was this helpful?
ArrayJoin(Array(“red”, null, “blue”, “yellow”), “ or ”, “*”)ArrayJoin(Json('[[1,"a"], {"b":2}, "c", 3]'), ";")