Answers for "combine two arrays into one js"

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
3

javascript combine array of arrays

/* Flatten (merge) an array of arrays with reduce & concat */
let myArrays = [[1, 2, 3], [4, 5], [6]];
myArrays.reduce((initial, current) => initial.concat(current), []);
// → [1, 2, 3, 4, 5, 6]


/* Join multiple arrays together. */
let warm = ["red", "orange"];
let cool = ["blue", "purple"];
let neutral = ["brown", "gray"];
let colors = warm.concat(cool).concat(neutral);
// → ["red", "orange", "blue", "purple", "brown", "gray"]
Posted by: Guest on March-10-2022
0

join two arrays in js

const array1 = ["Vijendra","Singh"];
const array2 = ["Singh", "Shakya"];
const array3 = [...array1, ...array2];
// [ "Vijendra", "Singh", "Singh", "Shakya" ]
Posted by: Guest on March-27-2022

Code answers related to "combine two arrays into one js"

Browse Popular Code Answers by Language