Edit in JSFiddle

var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2); // Hello world!

// 출력
document.write(res);