join()
string join(glue, input1, input2 …)join(":", "a", "b")<names>
<n>Alice</n>
<n>Bob</n>
</names>join(", ", names/*){
"names": [
"Alice",
"Bob"
]
}Last updated
string join(glue, input1, input2 …)join(":", "a", "b")<names>
<n>Alice</n>
<n>Bob</n>
</names>join(", ", names/*){
"names": [
"Alice",
"Bob"
]
}Last updated
join(", ", names)