String.prototype.concat

The concat method of String concatenates all of the arguments passed to the method to the string you're calling the method from.

'foo'.concat(' ', 'bar'); // returns foobar

Source