:sig
String concat(...vals)

:params
...val : one or more values that should be concatenated

:see
>string

:content
Returns a string with all parameters concatenated into one result.

## Related Concepts

- PHP: string concatenation with `.` or helpers like `implode()`
- JavaScript / Node.js: string concatenation with `+`, template literals, or `Array.prototype.join()`
