JSFiddle - React, Tailwind, and code Playground
JavaScript
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2); // res = Hello world!
alert(res);
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2); // res = Hello world!
alert(res);