append
text →
append(
text: text
) → text
Returns the argument value followed by the parameter value. If the argument is null, it returns the text specified as the parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
text | text | Yes | The text to append |
Examples
"Hello World" | append("Hi ") → "Hello WorldHi "
Kind: Function
Scope: text/concatenation
Aliases: text-to-append