Primitive
string.concat
BETAShort name: concat
Version: 1.0.0
Join an array of values into a single string with an optional separator.
Back to primitive libraryInputs
| Key | Type | Required | Description |
|---|---|---|---|
| parts | array | true | Array of values to join. Supported types: string, number, boolean, null, or undefined. |
| separator | string | false | String inserted between joined values. Defaults to empty string. |
Outputs
| Key | Type | Required | Description |
|---|---|---|---|
| result | string | false | Concatenated output string. |