Answers for "concat js with double"

4

js merge 2 lists

var array1 = ["Vijendra", "Singh"];
var array2 = ["Singh", "Shakya"];

console.log(array1.concat(array2));
// output: ["Vijendra", "Singh", "Singh", "Shakya"]
Posted by: Guest on July-13-2020
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"
Posted by: Guest on October-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language