🔗
Join List
base.text.joinBase SetUtilityJoins list items into a single string with a separator between each item. Perfect for building comma-separated lists, bullet lines, or one big message from many sparks.
On the canvas
This is what Join List looks like when you place it on your flow. Each field below is something you configure in the inspector panel.
🔗Utility
Join List
base.text.joinlistrequired
{{parts}}
separator
,
asrequired
joined
Config fields
| Field | Type | Req | What it does |
|---|---|---|---|
list{{parts}} | text | yes | List to join 📋 |
separator, | text | — | Between items |
asjoined | text | yes | Save text as ✨ |
Sparks this piece adds
After this piece runs, these values are available as sparks in every node downstream.
{{joined}}stringJoined textOutput ports
outputText spark is ready downstream
📐
In TypeScript, this would be…
Not something you need to write — just a look at what Kitcord does for you.
TypeScript
const joined = list.join(", ");
// separator ", " — {{joined}}More Utility pieces