Answers for "merging two arrays in javascript using"

PHP
67

combine two arrays javascript

let arr1 = [0, 1, 2];
let arr2 = [3, 5, 7];
let primes = arr1.concat(arr2);

// > [0, 1, 2, 3, 5, 7]
Posted by: Guest on February-02-2020
1

javascript combining arrays

let arr1 = ['1', '2'];
let arr2 = ['3', '4'];

let combarr = [].concat(arr1); //define new variable, empty array then concatenating arr1 to it
combarr = combarr.concat(arr2); //combarr = itself, then concatenating arr2 to the end
console.log(combarr); //Expected output: ['1','2','3','4']
Posted by: Guest on December-14-2021

Code answers related to "merging two arrays in javascript using"

Browse Popular Code Answers by Language