Answers for "how to store two array in one array"

C#
0

from array create two arrayjavascript

//If you find something better, please, let me know :(
let arr = [[1,2],[3,4],[5,6]]
let [arr1, arr2] = [[], []]
arr.map((e) => { arr1.push(e[0]); arr2.push(e[1]) })
console.log(arr1,arr2) // [[1,3,5],[2,4,6]]
Posted by: Guest on April-18-2021
0

combined 2 arrays

int[] front = { 1, 2, 3, 4 };
int[] back = { 5, 6, 7, 8 };

int[] combined = new int[front.Length + back.Length];
Array.Copy(front, combined, front.Length);
Array.Copy(back, 0, combined, front.Length, back.Length);
Posted by: Guest on May-19-2021

Code answers related to "how to store two array in one array"

C# Answers by Framework

Browse Popular Code Answers by Language