const a = [[0,1,2,3,4],[5,6,7,8]]; const flattenedArray = a.flat().sort((a, b) => a - b); console.log(flattenedArray);
0 Comments