Append to string variable [closed]

Like this:

var str="blah blah blah";
str += ' blah';

str += ' ' + 'and some more blah';

Leave a Comment