17 lines
373 B
Plaintext
17 lines
373 B
Plaintext
: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()`
|