javascript concat strigns code example
Example: string concatenation in js
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
console.log(res);
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
console.log(res);