How to join (merge) two strings in JavaScript

2 Answers

0 votes
const s1 = "javascript";
const s2 = "php";

const s1s2 = s1 + " " + s2;

document.write(s1s2);

 
 
/*
run:
       
javascript php 
     
*/

 



answered Nov 5, 2019 by avibootz
0 votes
const s1 = "javascript";
const s2 = "php";

const s1s2 = s1.concat(s2)

document.write(s1s2);

 
 
/*
run:
       
javascriptphp 
     
*/

 



answered Nov 5, 2019 by avibootz

Related questions

...