Answers for "write a function that takes in 2 arrays , merges them together an then return the new array sorted"

0

write a function that takes in 2 arrays , merges them together an then return the new array sorted

// const twoArraysSorted = (arr) => {
//     let copy = [...];
//     copy.sort((a,b) => a-b).map(el=> el*2)
//     return arr
// }
Posted by: Guest on November-17-2019

Code answers related to "write a function that takes in 2 arrays , merges them together an then return the new array sorted"

Browse Popular Code Answers by Language