Is it just:
var str = 'Hello';
str += ' World';
?
In most languages you can do this, yet some frown upon it. And in most of those languages they have a stringbuilder which more efficient, faster, and less prone to memory-leaks. So I was wondering if Javascript had something similar or just "better" way of appending strings to each other.