Answers for "from array create two arrayjavascript"

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

Code answers related to "from array create two arrayjavascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language