concat(a: utf8, b: utf8) → utf8
Category: [strings](builtinsstrings)_
Concatenate two strings into one.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| a | utf8 | The left-hand string. | — |
| b | utf8 | The string appended after a. | — |
| returns | utf8 | The two strings joined together. | — |
wcl
concat("foo", "bar") // join the two strings → "foobar"