Returns a string that contains the concatenation of two or more strings.
concat(...strings)
strings variadic
The strings to append to the end of the string.
A string.
"Cat".concat("Dog")
"CatDog"
"spring".concat(" ", "summer", " ", "fall", " ", "winter")
"spring summer fall winter"