JavaScript: Concatenate two values
This sample JavaScript custom scripting function combines first and last names separated by a space. Simple concatenations can also be accomplished with the standard String Concat function.
| Category | Details |
|---|---|
| Inputs | • firstName (Character) • lastName (Character) |
| Outputs | • result |
| Script | result = firstName + " " + lastName; |