concatenate string in js 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 and variables in javascript

const helloName = name => `Hello ${name}!`

Example 3: js concat string

const str1 = 'Hello';
const str2 = 'World';

console.log(str1.concat(' ', str2));
// expected output: "Hello World"

console.log(str2.concat(', ', str1));
// expected output: "World, Hello"

Example 4: js concatenate strings

const str1 = 'Hello';
const str2 = 'World';

console.log(str1 + str2);
>> HelloWorld

console.log(str1 + ' ' + str2);
>> Hello World

Example 5: string concat in js

let string1 = "Hello"
let string2 = "World"

let finalString = string1 + ", " + string2 + "!" // Hello, World!