Answers for "how to join two strings in javascript"

12

string concatenation in js

var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
console.log(res);
Posted by: Guest on April-28-2020
8

how to concatenate strings javascript

var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
// does not change the existing strings, but
// returns a new string containing the text
// of the joined strings.
Posted by: Guest on January-05-2020
3

js concatenate strings

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

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

console.log(str1 + ' ' + str2);
>> Hello World
Posted by: Guest on October-22-2020
0

javascript join 2 variables into string

A = 'hello ';
B = 'world!';

// outputs "hello world!"
console.log(A + B);
Posted by: Guest on October-04-2020
-1

string concatenation js

var aString="";
aString.concat(value1, value2, ... value_n);
Posted by: Guest on March-21-2020
-1

how to concatenate two strings using + in javascript

let str = 'Hello';
str += ' ';
str += 'World';
str; // 'Hello World'
Posted by: Guest on August-13-2021

Code answers related to "how to join two strings in javascript"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language