The concat method of String concatenates all of the arguments passed to the method to the string you're calling the method from.
String
'foo'.concat(' ', 'bar'); // returns foobar
Source