Was this helpful?
String Concatenation
To concatenate strings, use the + operator: for example:
"This " + "is " + "a " + "test."
gives the value
"This is a test."
You can also concatenate strings using the concat function; see String.
Last modified date: 11/28/2023