how to concat two arrays code example

Example 1: merge array in js

//for ES5
var array1 = ["Rahul", "Sachin"];
var array2 = ["Sehwag", "Kohli"];

var output = array1.concat(array2);
console.log(output);

//for ES6, we use spread operators to concat arrays

var array1 = ["Dravid", "Tendulkar"];
var array2 = ["Virendra", "Virat"];

var output = [...array1, ...array2];
console.log(output);

Example 2: javascript concat two arrays

//ES6
const array3 = [...array1, ...array2];

Example 3: how to print two arrays together

var array = [1,2,3,4,5,6,7,8,9,10]
var brray = ["one","two","three","four","five","six","seven","eight","nine","ten"]


for( i = 0 ; i < array.length ; i++){
 console.log(array[i], brray[i])

Tags:

Php Example