User Story
As a Salesforce Developer
I want to concatenate a first name and a last name
So that I can display the full name in the debug logs for validation or presentation purposes.
Acceptance Criteria:
Input Variables:
The script must define two String
variables, firstName
and lastName
, with predefined values.
Example values:
firstName = 'Will'
lastName = 'Smith'
A String
variable space
should be defined to hold a single space character (' '
), which will be used to separate the first and last names.
Processing Logic:
The script must concatenate the first name, space, and last name into a new variable named fullName
.
Example concatenation: firstName + space + lastName