how to join two strings in javascript code example
Example 1: string concatenation in js
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
console.log(res);
Example 2: how to concatenate strings javascript
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
Example 3: js concatenate strings
const str1 = 'Hello';
const str2 = 'World';
console.log(str1 + str2);
>> HelloWorld
console.log(str1 + ' ' + str2);
>> Hello World
Example 4: string concatenation js
var aString="";
aString.concat(value1, value2, ... value_n);
Example 5: javascript join 2 variables into string
A = 'hello ';
B = 'world!';
console.log(A + B);